forked from cosmology-tech/cw-simulate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.48 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
78
79
80
81
82
83
84
85
86
{
"name": "@oraichain/cw-simulate",
"version": "2.8.101",
"description": "Mock blockchain environment for simulating CosmWasm interactions",
"main": "dist/index.js",
"files": [
"dist"
],
"engines": {
"node": ">=18"
},
"repository": "https://github.com/oraichain/cw-simulate",
"author": "Terran One LLC, Oraichain Labs",
"license": "MIT",
"private": false,
"devDependencies": {
"@types/bytes": "^3.1.1",
"@types/jest": "^29.0.0",
"@types/lodash": "^4.14.187",
"benny": "^3.7.1",
"buffer": "^6.0.3",
"bytes": "^3.1.2",
"dotenv": "^16.4.5",
"esbuild": "^0.19.5",
"esbuild-runner": "^2.2.2",
"jest": "^29.2.0",
"lodash": "^4.17.21",
"patch-package": "^8.0.0",
"path-browserify": "^1.0.1",
"prettier": "^2.7.1",
"ts-loader": "^9.4.4",
"ts-node": "^10.9.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"typedoc": "^0.25.4",
"typescript": "^5.1.6",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0",
"webpack-node-externals": "^3.0.0"
},
"dependencies": {
"@cosmjs/amino": "^0.31.3",
"@cosmjs/cosmwasm-stargate": "^0.31.3",
"@cosmjs/crypto": "^0.31.3",
"@cosmjs/encoding": "^0.31.3",
"@cosmjs/stargate": "^0.31.3",
"@kiruse/serde": "^0.8.0-rc.6",
"@oraichain/common": "^1.1.1",
"@oraichain/cosmwasm-vm-js": "^0.2.87",
"eventemitter3": "^5.0.0",
"protobufjs": "^7.2.3",
"ts-results": "^3.3.0",
"tslib": "^2.6.1"
},
"scripts": {
"postinstall": "patch-package",
"deploy": "yarn publish --access public --patch",
"build": "tsc --module commonjs && webpack --mode production",
"test": "jest",
"bench": "ts-node bench/snapshot.ts",
"format": "prettier --check ./src/**/*.ts",
"format:fix": "prettier --write ./src/**/*.ts",
"lint": "eslint src --ext .js,.ts",
"lint:fix": "eslint src --ext .js,.ts --fix",
"docs": "typedoc --entryPointStrategy expand --readme README.md --name 'Cosmwasm Simulate SDK' src"
},
"lint-staged": {
"./src/**/*.ts": [
"npm run lint:fix",
"npm run format:fix"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"post-checkout": "npm i"
}
},
"prettier": {
"semi": true,
"singleQuote": true,
"trailingComma": "es5",
"arrowParens": "avoid",
"printWidth": 120
},
"packageManager": "[email protected]+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}