-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.32 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
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "cli-ts-signer",
"version": "3.3.2",
"description": "ts based signer for moonbeam",
"main": "index.js",
"repository": "[email protected]:moonsong-labs/cli-ts-signer.git",
"author": "Alan Sapede <[email protected]>",
"license": "MIT",
"devDependencies": {
"@types/chai": "^4.2.21",
"@types/elliptic": "^6.4.12",
"@types/mocha": "^9.0.0",
"@types/node": "^15.6.1",
"@types/prompts": "^2.0.13",
"@types/tcp-port-used": "^1.0.0",
"@types/yargs": "^17.0.1",
"chai": "^4.3.4",
"mocha": "^9.0.3",
"prettier": "^2.4.1"
},
"scripts": {
"cli": "node_modules/.bin/ts-node src/index.ts",
"cli-binary-macos": "./moonbeam-signer-macos",
"test": "mocha -r ts-node/register --exit 'test/**.spec.ts'",
"test-local": "LOCAL_BUILD=true mocha -r ts-node/register --exit 'test/**.spec.ts'",
"lint": "node_modules/.bin/prettier --check .",
"lint:fix": "node_modules/.bin/prettier -w .",
"build-binary": "npx @vercel/ncc build src/index.ts -o dist ; node_modules/.bin/pkg pkg.config.json"
},
"dependencies": {
"@moonbeam-network/api-augment": "^0.2902.0",
"@polkadot/api": "^12.1.1",
"@polkadot/keyring": "^12.6.2",
"@polkadot/util": "^12.6.2",
"@polkadot/util-crypto": "^12.6.2",
"@polkadot/wasm-crypto": "^7.3.2",
"chalk": "^4.1.2",
"child_process": "^1.0.2",
"elliptic": "^6.5.4",
"moonbeam-tools": "^0.0.49",
"ncc": "^0.3.6",
"pkg": "^5.8.0",
"prompts": "^2.4.1",
"tcp-port-used": "^1.0.2",
"ts-node": "^10.9.1",
"typescript": "^4.9.5",
"web3": "^1.6.1",
"wtfnode": "^0.9.1",
"yargs": "^17.6.2"
},
"overrides": {
"@polkadot/api": "$@polkadot/api",
"@polkadot/api-derive": "$@polkadot/api",
"@polkadot/api-augment": "$@polkadot/api",
"@polkadot/api-base": "$@polkadot/api",
"@polkadot/rpc-augment": "$@polkadot/api",
"@polkadot/rpc-core": "$@polkadot/api",
"@polkadot/rpc-provider": "$@polkadot/api",
"@polkadot/types-create": "$@polkadot/api",
"@polkadot/types-augment": "$@polkadot/api",
"@polkadot/types-support": "$@polkadot/api",
"@polkadot/types-codec": "$@polkadot/api",
"@polkadot/types": "$@polkadot/api",
"@polkadot/types-known": "$@polkadot/api",
"@polkadot/util": "$@polkadot/util",
"@polkadot/util-crypto": "$@polkadot/util-crypto"
}
}