-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
62 lines (62 loc) · 1.77 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
{
"name": "@open-web3/parachain-launch",
"version": "2.0.0",
"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": "tsc --noEmit && eslint . --ext .js,.ts && prettier --check .",
"fix": "eslint . --ext .js,.ts --fix && prettier -w .",
"start": "ts-node src/index.ts"
},
"dependencies": {
"@polkadot/api": "^10.9.1",
"@polkadot/keyring": "^12.4.2",
"@polkadot/util": "^12.4.2",
"@polkadot/util-crypto": "^12.4.2",
"lodash": "^4.17.21",
"readline-sync": "^1.4.10",
"shelljs": "^0.8.5",
"yaml": "^2.4.2",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/lodash": "^4.17.9",
"@types/readline-sync": "^1.4.8",
"@types/shelljs": "^0.8.14",
"@types/yargs": "^17.0.33",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-sort-imports-es6-autofix": "^0.6.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "~5.5.4"
},
"bin": "./bin/parachain-launch",
"packageManager": "[email protected]",
"prettier": {
"tabWidth": 2,
"semi": true,
"singleQuote": true
}
}