-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
71 lines (71 loc) · 1.92 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
{
"name": "@org/source",
"version": "0.0.0",
"license": "MIT",
"scripts": {
"start": "bun run build && node dist/libs/vm/src/index.js",
"build": "nx run-many --all --target=build",
"cli": "bun run libs/dev-tools/bin/index.js",
"fmt": "bunx biome check --write .",
"test": "nx run-many --all --target=test",
"docs": "bun run tools/typedoc/generate.ts",
"proto:generate": "cd libs/proto-messages/proto && npx buf generate"
},
"private": true,
"type": "module",
"overrides": {
"@types/glob": "file:./libs/glob-types/",
"@assemblyscript/wasi-shim": "git+https://github.com/sedaprotocol/wasi-shim.git"
},
"devDependencies": {
"@as-pect/cli": "^8.1.0",
"@assemblyscript/wasi-shim": "^0.1.0",
"@biomejs/biome": "1.8.3",
"@bufbuild/buf": "1.26.1",
"@nx/esbuild": "19.3.0",
"@nx/js": "19.3.0",
"@nx/workspace": "19.3.0",
"@swc-node/register": "1.9.2",
"@swc/cli": "0.3.12",
"@swc/core": "1.5.7",
"@tsconfig/node18": "^18.2.0",
"@types/big.js": "^6.2.2",
"@types/bun": "^1.1.5",
"@types/figlet": "^1.5.6",
"@types/node": "18.19.9",
"assemblyscript": "0.27.11",
"bun-plugin-dts": "^0.2.3",
"esbuild": "0.19.9",
"nx": "19.3.0",
"ts-node": "10.9.1",
"ts-proto": "^1.181.2",
"typedoc": "^0.25.3",
"typescript": "5.4.5"
},
"dependencies": {
"@cosmjs/cli": "^0.32.4",
"@cosmjs/cosmwasm-stargate": "^0.32.4",
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"@noble/secp256k1": "2.1.0",
"@seda-protocol/utils": "^1.3.0",
"@types/node-gzip": "^1.1.1",
"@wasmer/wasi": "^1.2.2",
"as-bignum": "^0.3.1",
"big.js": "^6.2.1",
"commander": "^11.0.0",
"cosmjs-types": "^0.9.0",
"dotenv": "^16.3.1",
"figlet": "^1.6.0",
"json-as": "0.9.26",
"node-fetch": "^3.3.2",
"node-gzip": "^1.1.2",
"ora": "^7.0.1",
"protobufjs": "7.2.5",
"true-myth": "^8.0.1",
"tslib": "^2.3.0",
"valibot": "^0.42.1",
"visitor-as": "0.11.4"
}
}