-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.57 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.57 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
{
"name": "playground-cli",
"description": "CLI for Polkadot Playground",
"version": "0.19.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.32.1",
"bin": {
"dot": "./src/index.ts"
},
"scripts": {
"postinstall": "bash node_modules/@polkadot-apps/terminal/scripts/patch-wasm.sh",
"format": "biome format --write .",
"format:check": "biome format .",
"build": "bun build --compile src/index.ts --outfile ./dist/dot",
"cli:install": "bun build --compile src/index.ts --outfile ~/.polkadot/bin/dot",
"test": "vitest run",
"test:watch": "vitest",
"test:e2e": "vitest run --config e2e/vitest.config.ts",
"test:e2e:smoke": "tools/e2e-local.sh smoke",
"test:e2e:pr": "tools/e2e-local.sh pr",
"test:e2e:nightly": "tools/e2e-local.sh nightly"
},
"dependencies": {
"@dotdm/contracts": "latest",
"@parity/dotns-cli": "0.6.0",
"@polkadot-api/sdk-ink": "^0.6.2",
"@polkadot-apps/address": "latest",
"@polkadot-apps/bulletin": "latest",
"@polkadot-apps/chain-client": "latest",
"@polkadot-apps/contracts": "latest",
"@polkadot-apps/descriptors": "latest",
"@polkadot-apps/keys": "latest",
"@polkadot-apps/storage": "^0.2.8",
"@polkadot-apps/terminal": "latest",
"@polkadot-apps/tx": "latest",
"@polkadot-apps/utils": "latest",
"@sentry/node": "^9.47.1",
"bulletin-deploy": "0.7.10",
"commander": "^12.0.0",
"ink": "^5.2.1",
"polkadot-api": "^1.23.3",
"react": "^18.3.1",
"react-devtools-core": "file:stubs/react-devtools-core",
"tar": "^7.5.13"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@changesets/cli": "^2.29.8",
"@types/node": "^22.15.3",
"@types/react": "^18.3.18",
"@types/tar": "^7.0.87",
"execa": "^9.6.1",
"typescript": "^5.9.3",
"vitest": "^3.2.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"@biomejs/biome"
],
"overrides": {
"@parity/dotns-cli>@polkadot-api/descriptors": "file:./stubs/papi-descriptors-stub"
},
"packageExtensions": {
"bulletin-deploy@0.7.10": {
"dependencies": {
"@polkadot/util": "13.5.9"
}
},
"@parity/dotns-cli@0.6.0": {
"dependencies": {
"@polkadot/util": "14.0.3"
}
}
}
}
}