-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 996 Bytes
/
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
{
"name": "@hyperplay/chains",
"version": "0.5.0",
"description": "A package to get chain metadata",
"main": "src/index.js",
"author": "Brett Cleary",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.1.2",
"ts-node": "^10.9.1",
"tslib": "^2.5.0",
"typescript": "^5.0.4",
"vite": "^4.3.5",
"vitest": "^1.2.0"
},
"scripts": {
"generateChainMap": "ts-node ./src/generateChainMap.ts",
"buildDist": "vite build",
"test": "vitest",
"bumpPkgVersion": "ts-node ./cd/bumpPkgVersion.ts",
"syncNewChains": "yarn bumpPkgVersion && git checkout -b sync/testing && yarn generateChainMap && git add * && git commit -m 'update' && git push --set-upstream origin sync/testing && yarn submitPR",
"submitPR": "gh pr create --title Sync --body body"
},
"dependencies": {
"axios": "^1.4.0",
"viem": "^2.17.3"
},
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js"
}
}
}