-
Notifications
You must be signed in to change notification settings - Fork 354
/
Copy pathpackage.json
93 lines (93 loc) · 2.58 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
{
"name": "@subql/cli",
"description": "cli for subquery",
"version": "5.5.0",
"author": "Ian He",
"bin": {
"subql": "./bin/run"
},
"bugs": "https://github.com/subquery/subql/issues",
"dependencies": {
"@inquirer/prompts": "^5.3.6",
"@oclif/core": "^2.16.0",
"@subql/common": "workspace:*",
"@subql/utils": "workspace:*",
"boxen": "5.1.2",
"chalk": "^4",
"ejs": "^3.1.10",
"fs-extra": "^11.2.0",
"fuzzy": "^0.1.3",
"glob": "^10.4",
"json5": "^2.2.3",
"node-fetch": "2.7.0",
"ora": "^5.4.1",
"rimraf": "^5.0.10",
"semver": "^7.6.3",
"simple-git": "^3.25.0",
"terser-webpack-plugin": "^5.3.10",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typescript": "^5.5.4",
"update-notifier": "^5.1.0",
"webpack": "^5.94.0",
"webpack-merge": "^6.0.1",
"websocket": "^1.0.35",
"yaml": "^2.5.0",
"yaml-loader": "^0.8.1"
},
"devDependencies": {
"@subql/common-algorand": "^4.0.0",
"@subql/common-concordium": "^4.0.1",
"@subql/common-cosmos": "^5.0.1",
"@subql/common-ethereum": "^4.5.0",
"@subql/common-near": "^4.0.0",
"@subql/common-stellar": "^4.0.0",
"@subql/common-substrate": "workspace:*",
"@types/ejs": "^3.1.5",
"@types/fs-extra": "^11.0.4",
"@types/node": "^18.19.42",
"@types/semver": "^7.5.8",
"@types/update-notifier": "^6",
"@types/websocket": "^1",
"eslint": "^8.8.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.3",
"ethers": "^5.7.2",
"oclif": "^3.15.0"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib",
"/npm-shrinkwrap.json",
"/oclif.manifest.json"
],
"homepage": "https://github.com/subquery/subql",
"repository": "packages/cli",
"keywords": [
"oclif"
],
"license": "GPL-3.0",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "subql"
},
"scripts": {
"build": "rm -rf lib && tsc -b && cp -r src/template lib/",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "yarn build && oclif manifest && oclif readme",
"test": "echo NO TESTS",
"version": "oclif readme && git add README.md",
"format": "prettier --write \"src/**/*.ts\"",
"changelog:release": "echo \"Updating changelog $npm_package_version\" && npx chan release $npm_package_version --git-url \"https://github.com/subquery/subql\" --release-prefix=\"cli/\""
},
"types": "lib/index.d.ts",
"resolutions": {
"node-fetch": "2.6.7"
}
}