-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.79 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
{
"name": "@injectivelabs/inj-ts",
"version": "0.0.9",
"description": "A simple CLI tool for Injective and its services.",
"license": "Apache-2.0",
"author": "@InjectiveLabs",
"repository": "https://github.com/InjectiveLabs/injective-cli-ts",
"keywords": [
"typescript",
"injective",
"cli",
"inj"
],
"engines": {
"node": ">=14.16"
},
"type": "commonjs",
"main": "./dist/index.js",
"bin": {
"inj-ts": "bin/inj-ts.js"
},
"scripts": {
"start": "yarn run build && node dist/index.js",
"test": "yarn run lint && jest",
"build": "yarn run clean:some && tsc -p tsconfig.build.json",
"clean:some": "rm -rf ./dist ./docs",
"lint": "eslint ./src --ext .ts,.tsx",
"build:publish": "yarn run build && yarn publish"
},
"dependencies": {
"@injectivelabs/networks": "1.14.32",
"@injectivelabs/sdk-ts": "1.14.33-beta.0",
"@injectivelabs/ts-types": "1.14.32",
"@injectivelabs/utils": "1.14.32",
"@types/fs-extra": "^9.0.13",
"dotenv": "^16.0.0",
"figlet": "^1.8.0",
"fs-extra": "^11.1.0",
"global": "^4.4.0",
"inquirer": "^12.1.0",
"inversify": "^6.0.1",
"kleur": "^4.1.5",
"minimist": "^1.2.7",
"reflect-metadata": "^0.1.13"
},
"devDependencies": {
"@liftr/tscov": "^2.0.0",
"@types/figlet": "^1.5.5",
"@types/inquirer": "^9.0.7",
"@types/jest": "^27.0.2",
"@types/minimist": "^1.2.2",
"@types/node": "^22.9.3",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"jest": "^29.7.0",
"nodemon": "^2.0.13",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typedoc": "^0.23.23",
"typescript": "^5.7.2",
"yarn": "^1.22.19"
},
"resolutions": {
"@apollo/client": "npm:@bangjelkoski/noop"
}
}