-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
55 lines (55 loc) · 1.91 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"author": "Jaco Greeff <[email protected]>",
"bugs": "https://github.com/polkadot-js/tools/issues",
"engines": {
"node": ">=18.14"
},
"homepage": "https://github.com/polkadot-js/tools#readme",
"license": "Apache-2.0",
"packageManager": "[email protected]",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/polkadot-js/tools.git"
},
"sideEffects": false,
"type": "module",
"version": "0.60.2",
"versions": {
"git": "0.60.2",
"npm": "0.60.2"
},
"workspaces": [
"packages/*"
],
"scripts": {
"build": "polkadot-dev-build-ts",
"build:release": "polkadot-ci-ghact-build",
"clean": "polkadot-dev-clean-build",
"docker:build": "./docker/build.sh build",
"docker:publish": "./docker/build.sh publish",
"lint": "polkadot-dev-run-lint",
"postinstall": "polkadot-dev-yarn-only",
"run:api": "node --loader @polkadot/dev-ts ./packages/api-cli/src/runcli.ts",
"run:json": "node --loader @polkadot/dev-ts ./packages/json-serve/src/runcli.ts",
"run:metadata": "node --loader @polkadot/dev-ts ./packages/metadata-cmp/src/runcli.ts",
"run:monitor": "node --loader @polkadot/dev-ts ./packages/monitor-rpc/src/runcli.ts",
"run:signer": "node --loader @polkadot/dev-ts ./packages/signer-cli/src/runcli.ts",
"run:vanity": "node --loader @polkadot/dev-ts ./packages/vanitygen/src/runcli.ts",
"test": "yarn run:api --help && yarn run:json --help && yarn run:metadata --help && yarn run:monitor --help && yarn run:signer --help && yarn run:vanity --help"
},
"devDependencies": {
"@polkadot/dev": "^0.81.2",
"@types/node": "^20.10.5",
"@types/yargs": "^17.0.32"
},
"resolutions": {
"@polkadot/api": "^14.2.1",
"@polkadot/api-derive": "^14.2.1",
"@polkadot/keyring": "^13.2.2",
"@polkadot/types": "^14.2.1",
"@polkadot/util": "^13.2.2",
"@polkadot/util-crypto": "^13.2.2",
"typescript": "^5.5.4"
}
}