-
Notifications
You must be signed in to change notification settings - Fork 38
/
package.json
77 lines (77 loc) · 2.42 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
{
"name": "@sei-js/proto",
"version": "4.1.0",
"description": "TypeScript library for Sei protobuf files generated using Telescope",
"author": "besated <[email protected]>",
"homepage": "https://github.com/sei-protocol/js-proto#readme",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public"
},
"main": "./dist/cjs/codegen/index.js",
"module": "./dist/esm/codegen/index.js",
"types": "./dist/types/codegen/index.d.ts",
"sideEffects": false,
"directories": {
"lib": "src",
"test": "__tests__"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "yarn build:cjs && yarn build:esm && yarn build:types",
"build:cjs": "tsc --outDir dist/cjs --module commonjs",
"build:esm": "tsc --outDir dist/esm --module esnext",
"build:types": "tsc --project ./tsconfig.declaration.json",
"codegen": "cross-env NODE_ENV=development ts-node --esm scripts/codegen.js",
"postcodegen": "yarn prettier --write ./src/codegen/**/*.ts --config ../../.prettierrc",
"docs": "typedoc --out docs",
"test": "jest --passWithNoTests",
"test:watch": "jest --watch",
"test:debug": "node --inspect node_modules/.bin/jest --runInBand",
"lint": "eslint --ext .ts"
},
"repository": {
"type": "git",
"url": "https://github.com/sei-protocol/sei-js"
},
"keywords": [],
"bugs": {
"url": "https://github.com/sei-protocol/sei-js/issues"
},
"devDependencies": {
"@protobufs/cosmos": "^0.1.0",
"@protobufs/cosmos_proto": "^0.0.10",
"@protobufs/cosmwasm": "^0.1.1",
"@protobufs/gogoproto": "^0.0.10",
"@protobufs/google": "^0.0.10",
"@protobufs/ibc": "^0.1.0",
"@protobufs/tendermint": "^0.0.10",
"cross-env": "^7.0.2",
"jest-in-case": "^1.0.2",
"long": "^5.2.0",
"regenerator-runtime": "^0.13.7",
"ts-node": "^10.9.2",
"tsc-watch": "^6.2.0"
},
"dependencies": {
"@babel/runtime": "^7.24.0",
"@cosmjs/amino": "^0.32.2",
"@cosmjs/encoding": "^0.32.3",
"@cosmjs/proto-signing": "^0.32.2",
"@cosmjs/stargate": "^0.32.2",
"@cosmjs/tendermint-rpc": "^0.32.2",
"@cosmology/lcd": "^0.13.3",
"@cosmology/telescope": "^1.5.3",
"@osmonauts/helpers": "^0.7.0",
"cosmjs-types": "^0.9.0",
"protobufjs": "^7.2.6"
},
"exports": {
".": {
"import": "./dist/esm/codegen/index.js",
"require": "./dist/cjs/codegen/index.js",
"types": "./dist/types/codegen/index.d.ts"
}
}
}