-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@verto/js",
"version": "1.0.0",
"author": "th8ta LLC",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"gitHooks": {
"pre-commit": "prettier --write . && git add -A"
},
"main": "dist/node/index",
"browser": "dist/browser/index",
"types": "dist/node/index",
"scripts": {
"build": "tsc --project 'tsconfig.browser.json' && tsc --project 'tsconfig.node.json'",
"build-browser": "tsc --project 'tsconfig.browser.json'",
"build-node": "tsc --project 'tsconfig.node.json'",
"fmt": "prettier --write .",
"fmt:check": "prettier --check ."
},
"dependencies": {
"@three-em/js": "^0.2.8",
"@three-em/node": "^0.2.10",
"ar-gql": "^0.0.6",
"arweave": "^1.10.23",
"axios": "^0.24.0",
"smartweave": "^0.4.46",
"verto-cache-interface": "^1.2.6",
"verto-internals": "^0.9.1"
},
"devDependencies": {
"@types/node": "^14.14.37",
"prettier": "^2.2.1",
"typescript": "^4.2.3",
"yorkie": "^2.0.0"
}
}