-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.24 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
{
"name": "@virtonetwork/kreivo-sandbox",
"version": "1.3.1",
"type": "module",
"bin": {
"kreivo-sandbox": "dist/bin/kreivo-sandbox.mjs",
"kreivo-sandbox-utils": "dist/bin/kreivo-sandbox-utils.mjs"
},
"main": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts",
"exports": {
".": {
"import": "./dist/lib/index.js",
"types": "./dist/lib/index.d.ts"
}
},
"scripts": {
"cli": "node --loader ts-node/esm bin/kreivo-sandbox.mts",
"utils": "node --loader ts-node/esm bin/kreivo-sandbox-utils.mts",
"prepack": "tsc",
"kusama:kreivo-with-relay": "node --loader ts-node/esm kusama/kreivo-with-relay.ts",
"kusama:kreivo-ah": "node --loader ts-node/esm kusama/kreivo-ah.ts",
"kusama:kreivo-upgrade": "node --loader ts-node/esm kusama/kreivo-upgrade.ts",
"util:community-sa": "node --loader ts-node/esm utils/construct-community-sa-in-kusama.ts"
},
"dependencies": {
"@acala-network/chopsticks": "^1.0.1",
"@polkadot/api": "^14.3.1",
"@polkadot/wasm-crypto": "^7.4.1",
"commander-ts": "^0.2.0",
"console-table-printer": "^2.12.1",
"hash-wasm": "^4.11.0",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"devDependencies": {
"@tsconfig/node22": "^22.0.0"
}
}