-
Notifications
You must be signed in to change notification settings - Fork 578
/
package.json
71 lines (71 loc) · 2.08 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
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "@snapshot-labs/snapshot.js",
"version": "0.12.28",
"repository": "snapshot-labs/snapshot.js",
"license": "MIT",
"main": "dist/snapshot.cjs.js",
"module": "dist/snapshot.esm.js",
"browser": "dist/snapshot.min.js",
"types": "dist/src/index.d.ts",
"dependencies": {
"@ensdomains/eth-ens-namehash": "^2.0.15",
"@ethersproject/abi": "^5.6.4",
"@ethersproject/address": "^5.6.1",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/bytes": "^5.6.1",
"@ethersproject/contracts": "^5.6.2",
"@ethersproject/hash": "^5.7.0",
"@ethersproject/providers": "^5.6.8",
"@ethersproject/units": "^5.7.0",
"@ethersproject/wallet": "^5.6.2",
"ajv": "^8.11.0",
"ajv-errors": "^3.0.0",
"ajv-formats": "^2.1.1",
"cross-fetch": "^3.1.6",
"json-to-graphql-query": "^2.2.4",
"lodash.set": "^4.3.2",
"starknet": "^5.24.3"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^18.1.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@types/node": "^13.9.5",
"@typescript-eslint/eslint-plugin": "^4.28.2",
"@typescript-eslint/parser": "^4.33.0",
"@vitest/coverage-v8": "^0.33.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.4.0",
"prettier": "2.7.1",
"rollup": "^2.35.1",
"rollup-plugin-filesize": "^9.1.2",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-builtins": "^2.1.2",
"rollup-plugin-node-globals": "^1.4.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-terser": "^7.0.0",
"rollup-plugin-typescript2": "^0.27.0",
"ts-node": "^10.9.2",
"typescript": "^5.0.0",
"vitest": "^0.33.0"
},
"scripts": {
"build": "rollup -c",
"build:cjs": "rollup -c rollup.cjs.config.js",
"test": "vitest",
"test:once": "vitest run",
"dev": "rollup -c -w",
"lint": "eslint . --ext .ts",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"prepublishOnly": "yarn build"
},
"engines": {
"node": ">=16"
},
"files": [
"dist",
"src"
]
}