-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 966 Bytes
/
package.json
File metadata and controls
37 lines (37 loc) · 966 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
26
27
28
29
30
31
32
33
34
35
36
37
{
"name": "westend-coretime-purchaser",
"version": "1.0.0",
"description": "A CLI tool for purchasing coretime on Westend Coretime Chain",
"type": "module",
"main": "coretime-purchaser.js",
"bin": {
"coretime-purchaser": "./coretime-purchaser.js"
},
"scripts": {
"postinstall": "npx papi add dot -n westend2",
"start": "node coretime-purchaser.js",
"purchase": "node coretime-purchaser.js",
"check-regions": "node coretime-purchaser.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [
"polkadot",
"westend",
"coretime",
"parachain",
"substrate",
"blockchain"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@polkadot-api/descriptors": "file:.papi/descriptors",
"@polkadot/api": "^16.4.3",
"@polkadot/keyring": "^13.5.4",
"@polkadot/util-crypto": "^13.5.4",
"polkadot-api": "^1.15.0"
},
"engines": {
"node": ">=18.0.0"
}
}