forked from subquery/subql-solana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.11 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
{
"name": "@subql/cli",
"description": "cli for subquery",
"version": "0.22.1-0",
"author": "Ian He",
"bin": {
"subql": "./bin/run"
},
"bugs": "https://github.com/subquery/subql/issues",
"dependencies": {
"@oclif/command": "^1.8.16",
"@oclif/config": "^1.18.3",
"@oclif/core": "^1.3.3",
"@oclif/plugin-help": "^3.2.3",
"@subql/common": "workspace:*",
"@subql/common-substrate": "workspace:*",
"@subql/common-terra": "workspace:*",
"@subql/validator": "workspace:*",
"@types/ejs": "^3.1.0",
"@types/inquirer": "^8.2.0",
"cli-ux": "^6.0.9",
"ejs": "^3.1.6",
"fuzzy": "^0.1.3",
"inquirer": "^8.2.0",
"inquirer-autocomplete-prompt": "^1.4.0",
"ipfs-http-client": "^52.0.3",
"oclif": "^2.4.4",
"rimraf": "^3.0.2",
"simple-git": "^3.1.1",
"ts-loader": "^9.2.6",
"tslib": "^2.3.1",
"webpack": "^5.68.0",
"webpack-merge": "^5.8.0",
"websocket": "^1.0.34",
"yaml-loader": "^0.6.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.26.10",
"@types/node": "^14.18.10",
"@types/rimraf": "^3.0.2",
"@types/websocket": "^1",
"eslint": "^8.8.0",
"eslint-config-oclif": "^4.0.0",
"eslint-config-oclif-typescript": "^1.0.2",
"globby": "^11"
},
"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": "Apache-2.0",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "subql",
"plugins": [
"@oclif/plugin-help"
]
},
"scripts": {
"build": "rm -rf lib && tsc -b",
"postpack": "rm -f oclif.manifest.json",
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "yarn build && cp -r src/template lib/ && oclif-dev manifest && oclif-dev readme",
"test": "echo NO TESTS",
"version": "oclif-dev readme && git add README.md",
"format": "prettier --write \"src/**/*.ts\""
},
"types": "lib/index.d.ts",
"stableVersion": "0.22.0"
}