-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (67 loc) · 2.67 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": "interchainjs-project",
"version": "0.0.1",
"private": true,
"description": "universal signing client for blockchain networks",
"repository": "[email protected]:hyperweb-io/interchainjs.git",
"author": "Hyperweb <[email protected]>",
"license": "MIT",
"publishConfig": {
"access": "restricted"
},
"workspaces": [
"packages/*",
"networks/*",
"libs/*"
],
"scripts": {
"codegen": "yarn clean:codegen && yarn codegen:types && yarn codegen:ic && yarn codegen:inj",
"codegen:ic": "telescope transpile --config ./scripts/interchainjs.telescope.json && telescope transpile --config ./scripts/interchain-react.telescope.json && telescope transpile --config ./scripts/interchain-vue.telescope.json",
"codegen:inj": "telescope transpile --config ./scripts/inj.telescope.json && telescope transpile --config ./scripts/inj-react.telescope.json && telescope transpile --config ./scripts/inj-vue.telescope.json",
"codegen:types": "telescope transpile --config ./scripts/cosmos-types.telescope.json",
"proto": "telescope download --config ./scripts/.protod.config.json && telescope download --config ./scripts/.injective.protod.config.json",
"test": "lerna run test --stream",
"clean": "lerna run clean",
"clean:codegen": "rimraf libs/*/src",
"clean:modules": "find . -name 'node_modules' -type d -prune -print | xargs rm -rf",
"bootstrap": "lerna bootstrap",
"build": "lerna run build --stream",
"build:dev": "lerna run build:dev --stream; yarn symlink",
"lint": "lerna run lint --parallel",
"symlink": "symlink-workspace --logLevel error",
"postinstall": "yarn symlink"
},
"devDependencies": {
"@chain-registry/client": "1.18.1",
"@confio/relayer": "^0.12.0",
"@cosmjs/crypto": "^0.32.2",
"@cosmology/telescope": "^1.11.16",
"@injectivelabs/networks": "^1.14.13",
"@injectivelabs/sdk-ts": "^1.14.13",
"@injectivelabs/wallet-ts": "^1.14.13",
"@noble/hashes": "^1.4.0",
"@starship-ci/cli": "^2.9.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.10.0",
"@typescript-eslint/parser": "^7.10.0",
"copyfiles": "^2.4.1",
"del-cli": "^5.1.0",
"eslint": "8.38.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-simple-import-sort": "^12.1.0",
"eslint-plugin-unused-imports": "^4.0.0",
"jest": "^29.6.2",
"lerna": "^6",
"prettier": "2.8.7",
"rimraf": "4.4.1",
"sinon": "^17.0.1",
"starshipjs": "^2.4.0",
"strip-ansi": "^6",
"symlink-workspace": "^1.9.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.1.6"
}
}