-
Notifications
You must be signed in to change notification settings - Fork 339
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (86 loc) · 2.77 KB
/
Copy pathpackage.json
File metadata and controls
86 lines (86 loc) · 2.77 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "test",
"private": true,
"version": "1.0.0",
"description": "",
"main": "index.js",
"type": "module",
"scripts": {
"clean": "rm -rf node_modules tmp",
"start": "moonwall",
"fmt": "biome format .",
"fmt:fix": "biome format --write .",
"lint": "biome lint . && tsc --noEmit",
"lint:fix": "biome lint --write .",
"generate-types": "polkadot-api add subtensor --wsUrl ws://localhost:9944 --skip-codegen && polkadot-api",
"generate-ink-types": "polkadot-api ink add ./ink/bittensor.json && polkadot-api"
},
"keywords": [],
"author": "",
"license": "ISC",
"optionalDependencies": {
"@polkadot-api/descriptors": "file:.papi/descriptors"
},
"pnpm": {
"overrides": {
"vitest@<3.2.6": "3.2.6",
"ws@>=8.0.0 <8.21.0": "8.21.0",
"minimatch@>=10.0.0 <10.2.3": "10.2.3",
"protobufjs@<7.6.3": "7.6.5",
"tar@<7.5.16": "7.5.19",
"serialize-javascript@<7.0.5": "7.0.5",
"tmp@<0.2.6": "0.2.7",
"yaml@>=2.0.0 <2.8.3": "2.8.3",
"uuid@>=10.0.0 <11.1.1": "11.1.1",
"esbuild@>=0.27.3 <0.28.1": "0.28.1"
}
},
"dependencies": {
"@inquirer/prompts": "7.3.1",
"@noble/ciphers": "^2.1.1",
"@polkadot-api/ink-contracts": "^0.4.1",
"@polkadot-api/merkleize-metadata": "^1.1.15",
"@polkadot-api/sdk-ink": "^0.5.1",
"@polkadot-api/substrate-bindings": "^0.17.0",
"@polkadot/api": "*",
"@polkadot/keyring": "*",
"@polkadot/types": "*",
"@polkadot/types-codec": "*",
"@polkadot/util": "*",
"@polkadot/util-crypto": "*",
"@zombienet/orchestrator": "0.0.105",
"ethereum-cryptography": "3.1.0",
"mlkem": "^2.7.0",
"polkadot-api": "^1.22.0",
"ps-node": "0.1.6"
},
"devDependencies": {
"@acala-network/chopsticks": "1.2.3",
"@biomejs/biome": "1.9.4",
"@moonwall/cli": "5.18.3",
"@moonwall/util": "5.18.3",
"@polkadot/wasm-crypto": "^7.4.1",
"@types/debug": "4.1.12",
"@types/json-bigint": "1.0.4",
"@types/node": "*",
"@types/ps-node": "0.1.3",
"@types/yargs": "^17.0.33",
"@vitest/ui": "3.2.6",
"@zombienet/utils": "^0.0.28",
"bottleneck": "2.19.5",
"chalk": "^5.4.0",
"debug": "4.3.7",
"ethers": "^6.13.4",
"json-bigint": "1.0.0",
"pnpm": "10.34.4",
"solc": "0.8.21",
"toml": "^3.0.0",
"tsx": "*",
"typescript": "5.8.3",
"viem": "2.38.0",
"vitest": "3.2.6",
"web3": "4.15.0",
"web3-providers-ws": "4.0.8",
"yargs": "18.0.0"
}
}