-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
26 lines (26 loc) · 942 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
{
"name": "app-registry",
"version": "1.0.0",
"description": "App (Chain) Registry",
"repository": {
"type": "git",
"url": "https://github.com/ezstaking/app-registry"
},
"type": "module",
"private": true,
"scripts": {
"postinstall": "npm remove chain-registry 2>&1 && npm add chain-registry 2>&1",
"update": "NODE_OPTIONS='--experimental-specifier-resolution=node --loader ts-node/esm --experimental-modules' node scripts/chain-update.mjs",
"ci:update": "NODE_OPTIONS='--experimental-specifier-resolution=node --loader ts-node/esm --experimental-modules' node scripts/chain-update.mjs",
"postci:update": "npm remove chain-registry 2>&1",
"utils:gen:predoc": "npx jsonschema2mk --schema chains/chain.schema.json >PREDOC.md"
},
"devDependencies": {
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"dependencies": {
"clean-semver": "^2.1.0",
"compare-versions": "^6.1.1"
}
}