This repository has been archived by the owner on Dec 4, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.55 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"name": "@verto/lib",
"version": "0.10.5",
"author": "The Verto Team",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"scripts": {
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"build": "rollup -c",
"test": "rollup -c rollup.test.js && mocha 'build/index.test.js' --no-timeout --exit",
"dev": "rollup -cw",
"lint": "eslint . --ext .ts,.tsx"
},
"main": "dist/index.js",
"module": "dist/index.es.js",
"files": [
"dist"
],
"types": "dist/src/index.d.ts",
"dependencies": {
"ar-gql": "^0.0.6",
"arweave": "^1.10.11",
"axios": "^0.21.1",
"cacheweave": "^4.0.0",
"ethers": "^5.0.26",
"moment": "^2.29.1",
"smartweave": "^0.4.27"
},
"devDependencies": {
"@rollup/plugin-alias": "^3.1.1",
"@rollup/plugin-commonjs": "^15.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-multi-entry": "^4.0.0",
"@rollup/plugin-node-resolve": "^9.0.0",
"@rollup/pluginutils": "^4.0.0",
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"@types/node": "^14.6.2",
"@types/test-console": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"chai": "^4.2.0",
"eslint": "^7.9.0",
"mocha": "^8.1.3",
"module-alias": "^2.2.2",
"prettier": "^2.1.1",
"rollup": "^2.26.6",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.1",
"rollup-plugin-typescript2": "^0.27.3",
"test-console": "^1.1.0",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}