-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
147 lines (147 loc) · 4.25 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
{
"name": "@astar-network/swanky-cli",
"version": "4.0.0",
"description": "All in one WASM smart contract development toolset",
"author": "Astar network",
"license": "MIT",
"repository": "https://github.com/inkdevhub/swanky-cli",
"homepage": "https://github.com/inkdevhub/swanky-cli",
"bugs": "https://github.com/inkdevhub/swanky-cli/issues",
"type": "module",
"bin": {
"swanky": "./bin/run.js"
},
"main": "dist/index.js",
"files": [
"/bin",
"/dist",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"dependencies": {
"@iarna/toml": "^2.2.5",
"@oclif/core": "3.24.0",
"@oclif/plugin-help": "6.0.18",
"@oclif/plugin-plugins": "4.3.5",
"@oclif/plugin-version": "2.0.14",
"@polkadot/api": "10.12.2",
"@polkadot/api-augment": "10.12.2",
"@polkadot/api-contract": "10.12.2",
"@polkadot/keyring": "12.6.2",
"@polkadot/types": "10.12.2",
"@polkadot/types-codec": "10.12.2",
"@polkadot/util": "12.6.2",
"@polkadot/util-crypto": "12.6.2",
"bn.js": "5.2.1",
"chalk": "5.3.0",
"change-case": "5.4.3",
"decompress": "4.2.1",
"enquirer": "^2.4.1",
"execa": "8.0.1",
"fs-extra": "11.2.0",
"globby": "^14.0.1",
"handlebars": "4.7.8",
"inquirer": "9.2.15",
"inquirer-fuzzy-path": "^2.3.0",
"listr2": "8.0.2",
"lodash-es": "^4.17.21",
"mocha": "10.3.0",
"mocha-suppress-logs": "0.5.1",
"mochawesome": "7.1.3",
"modern-errors": "^7.0.0",
"modern-errors-bugs": "^5.0.0",
"modern-errors-clean": "^6.0.0",
"modern-errors-winston": "^5.0.0",
"node-downloader-helper": "2.1.9",
"ora": "8.0.1",
"semver": "7.6.0",
"toml": "^3.0.0",
"ts-mocha": "^10.0.0",
"winston": "^3.12.0"
},
"devDependencies": {
"@oclif/test": "3.2.5",
"@types/bn.js": "^5.1.5",
"@types/chai": "4",
"@types/decompress": "4.2.7",
"@types/fs-extra": "11.0.4",
"@types/iarna__toml": "^2.0.5",
"@types/inquirer": "9.0.7",
"@types/inquirer-fuzzy-path": "^2.3.9",
"@types/lodash-es": "^4.17.12",
"@types/mocha": "10.0.6",
"@types/node": "^20.11.26",
"@types/semver": "7.5.8",
"@typescript-eslint/eslint-plugin": "7.2.0",
"@typescript-eslint/parser": "7.2.0",
"chai": "5",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"eslint-plugin-prettier": "5.1.3",
"nodemon": "^3.1.0",
"oclif": "4.5.4",
"prettier": "3.2.5",
"shx": "0.3.4",
"ts-node": "10.9.2",
"tslib": "2.6.2",
"typescript": "5.4.2"
},
"oclif": {
"bin": "swanky",
"dirname": "swanky",
"commands": "./dist/commands",
"topicSeparator": " ",
"additionalHelpFlags": [
"-h"
],
"additionalVersionFlags": [
"-v",
"-V"
],
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-version",
"@oclif/plugin-plugins"
],
"hooks": {
"command_not_found": [
"./dist/hooks/command_not_found/command_not_found"
]
}
},
"scripts": {
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css,md}\"",
"lint": "eslint . --ext .ts --quiet --config .eslintrc",
"postpack": "shx rm -f oclif.manifest.json",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "mocha --config .mocharc.json",
"version": "oclif readme && git add README.md",
"tarball:macos": "oclif pack tarballs --targets=darwin-x64 --no-xz",
"tarball:linux": "oclif pack tarballs --targets=linux-x64 --no-xz",
"tarball:all": "oclif pack tarballs --targets=linux-x64,linux-arm64,darwin-x64,darwin-arm64 --no-xz",
"build:clean": "shx rm -rf dist && rm -f tsconfig.tsbuildinfo",
"build:ts": "tsc -b",
"build:templates": "cp -R ./src/templates ./dist",
"build": "yarn build:clean && yarn build:ts && yarn build:templates",
"dev:ts": "tsc --watch",
"dev:templates": "yarn build:templates && nodemon --watch ./src/templates --ext '*' --exec yarn build:templates",
"dev": "yarn dev:ts & yarn dev:templates",
"dev:run": "./bin/run.js"
},
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"oclif",
"swanky",
"cli",
"astar",
"shiden",
"wasm"
],
"types": "dist/index.d.ts",
"gitHead": "cccb996036cf2b6fbbe4e1f02c31079ba99fc517",
"publishConfig": {
"access": "public"
}
}