-
Notifications
You must be signed in to change notification settings - Fork 32
/
package.json
52 lines (52 loc) · 1.61 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
{
"name": "@synapsecns/synapse-constants",
"version": "1.6.0",
"description": "This is an npm package that maintains all synapse constants",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"types": "dist/types/index.d.ts",
"license": "MIT",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/synapsecns/sanguine.git"
},
"homepage": "https://github.com/synapsecns/sanguine/blob/master/packages/synapse-constants/README.md",
"publishConfig": {
"access": "public"
},
"scripts": {
"test:coverage": "echo 'No tests defined.'",
"ci:lint": " ",
"build:go": " ",
"build:slither": " ",
"lint": " ",
"lint:fix": "npm run lint -- --fix",
"lint:check": "eslint . --max-warnings=0 --config .eslintrc.cjs",
"prepare": "rollup -c --bundleConfigAsCjs",
"build": "rollup -c --bundleConfigAsCjs",
"prepublish": "yarn build",
"maps:generate": "node ./src/scripts/generateMaps.cjs && node ./src/scripts/findMissing.cjs && yarn build"
},
"dependencies": {
"@ethersproject/address": "5.7.0",
"@ethersproject/bignumber": "5.7.0",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-url": "^8.0.2",
"babel-plugin-transform-export-extensions": "^6.22.0",
"ethers": "5.7.2",
"lodash": "^4.17.21",
"rollup": "^4.22.4",
"rollup-plugin-typescript2": "^0.36.0",
"typescript": "^5.3.3",
"viem": "^2.21.6"
},
"devDependencies": {
"@codecov/rollup-plugin": "^1.2.0"
}
}