-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.65 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.65 KB
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
{
"name": "injective-ts-examples",
"version": "0.0.1",
"private": true,
"description": "TypeScript examples for verifying Injective SDK behavior and endpoint responses.",
"author": "Bojan Angjelkoski <bojan@injectivelabs.org>",
"repository": "https://github.com/InjectiveLabs/injective-ts-examples",
"license": "Apache-2.0",
"packageManager": "pnpm@10.7.0",
"keywords": [
"typescript"
],
"scripts": {
"example": "tsx src/runner.ts",
"example:list": "tsx src/runner.ts list",
"typecheck": "tsc --noEmit",
"lint": "eslint .",
"test": "vitest run",
"check": "pnpm lint && pnpm typecheck && pnpm test",
"postinstall": "pnpm deps:injective:update",
"deps:injective:update": "pnpm update \"@injectivelabs/*\" --latest"
},
"dependencies": {
"@cosmjs/proto-signing": "^0.31.0",
"@cosmjs/stargate": "^0.31.0",
"@cosmjs/tendermint-rpc": "^0.32.4",
"@injectivelabs/core-proto-ts": "1.16.6",
"@injectivelabs/exceptions": "1.20.18",
"@injectivelabs/networks": "1.20.18",
"@injectivelabs/sdk-ts": "1.20.18",
"@injectivelabs/ts-types": "1.20.18",
"@injectivelabs/utils": "1.20.18",
"@injectivelabs/wallet-base": "1.20.18",
"@injectivelabs/wallet-core": "1.20.18",
"@injectivelabs/wallet-private-key": "1.20.18",
"@injectivelabs/wallet-strategy": "1.20.18",
"dotenv": "^16.0.3",
"global": "^4.4.0",
"js-base64": "^3.7.2"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^8.57.0",
"tsx": "^4.20.0",
"typescript": "^5.8.0",
"vitest": "^3.2.0"
}
}