forked from open-web3-stack/parachain-launch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.28 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
{
"name": "@open-web3/parachain-launch",
"version": "1.2.1",
"author": "Laminar Developers <[email protected]>",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/types.d.ts",
"repository": "https://github.com/open-web3-stack/parachain-launch",
"bugs": "https://github.com/open-web3-stack/parachain-launch/issues",
"homepage": "https://github.com/open-web3-stack/parachain-launch",
"files": [
"lib/*",
"bin/*"
],
"engine": {
"node": ">=14"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsc --build tsconfig.json",
"lint": "polkadot-dev-run-lint",
"start": "ts-node src/index.ts"
},
"dependencies": {
"@polkadot/api": "^8.6.2",
"@polkadot/keyring": "^8.4.1",
"@polkadot/util": "^8.4.1",
"@polkadot/util-crypto": "^8.4.1",
"lodash": "^4.17.21",
"readline-sync": "^1.4.10",
"shelljs": "^0.8.5",
"yaml": "^2.1.1",
"yargs": "^17.5.1"
},
"devDependencies": {
"@open-web3/dev-config": "^0.2.2",
"@types/lodash": "^4.14.182",
"@types/readline-sync": "^1.4.4",
"@types/shelljs": "^0.8.11",
"@types/yargs": "^17.0.10",
"ts-node": "^10.8.0",
"typescript": "^4.7.2"
},
"bin": "./bin/parachain-launch"
}