-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) Β· 818 Bytes
/
package.json
File metadata and controls
25 lines (25 loc) Β· 818 Bytes
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
{
"name": "website-registry",
"version": "1.0.0",
"description": "EZ Staking β Website Registry π",
"scripts": {
"build": "./scripts/build.sh && npm run make",
"make": "NODE_OPTIONS='--experimental-specifier-resolution=node --loader ts-node/esm --experimental-modules' node scripts/make.mjs",
"utils:gen:doc": "npx jsonschema2mk --schema protocols/protocol.schema.json > README.md",
"validate": "ajv validate -s protocols/protocol.schema.json -d protocols/akash/protocol.json"
},
"repository": {
"type": "git",
"url": "https://github.com/ezstaking/website-registry"
},
"private": true,
"devDependencies": {
"dotenv": "^16.4.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"dependencies": {
"jsonschema2mk": "^1.9.0",
"node-jq": "^6.0.1"
}
}