forked from inkdevhub/swanky-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.02 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
{
"name": "@astar-network/swanky-suite",
"version": "1.0.0",
"private": true,
"description": "All in one WASM smart contract development toolset",
"author": "Astar network",
"license": "MIT",
"repository": "https://github.com/AstarNetwork/swanky-cli",
"dependencies": {},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"eslint": "^8.26.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"lerna": "^6.0.3",
"prettier": "^2.7.1"
},
"scripts": {
"lint": "lerna run lint",
"test": "lerna run test",
"build": "lerna run build"
},
"engines": {
"node": ">=18.0.0"
},
"bugs": "https://github.com/AstarNetwork/swanky-cli/issues",
"keywords": [
"oclif",
"swanky",
"cli",
"astar",
"shiden",
"wasm"
],
"workspaces": [
"packages/*"
],
"resolutions": {
"@polkadot/util": "10.2.1",
"@polkadot/util-crypto": "10.2.1",
"@polkadot/keyring": "10.2.1"
}
}