forked from cosmology-tech/cosmwasm-vm-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.12 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": "@terran-one/cosmwasm-vm-js",
"version": "0.2.16",
"license": "MIT",
"author": "TerranOne",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"files": [
"dist"
],
"publishConfig": {
"registry": "https://registry.npmjs.org"
},
"scripts": {
"build": "tsc --module commonjs && webpack --mode production",
"size": "size-limit",
"test": "dts test",
"lint": "dts lint",
"//degit:contracts": "cd contracts && npx degit CosmWasm/cosmwasm/contracts/hackatom#0.16 hackatom",
"prepublishOnly": "npm run build"
},
"husky": {
"hooks": {
"pre-commit": "dts lint --fix"
}
},
"prettier": {
"printWidth": 80,
"semi": true,
"singleQuote": true,
"trailingComma": "es5"
},
"engines": {
"node": ">=12"
},
"size-limit": [
{
"path": "dist/cw-vm.ts.cjs.production.min.js",
"limit": "10 KB"
},
{
"path": "dist/cw-vm.ts.esm.js",
"limit": "10 KB"
}
],
"peerDependencies": {
"@babel/plugin-syntax-flow": "7.18.6",
"@babel/plugin-transform-react-jsx": "7.19.0",
"@babel/plugin-syntax-jsx": "7.18.6"
},
"devDependencies": {
"@babel/preset-typescript": "^7.16.7",
"@size-limit/preset-small-lib": "^7.0.8",
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.5.2",
"dts-cli": "^1.5.1",
"husky": "^7.0.4",
"majestic": "^1.8.1",
"size-limit": "^7.0.8",
"stream-browserify": "^3.0.0",
"terser-webpack-plugin": "^5.3.6",
"ts-jest": "^27.1.4",
"ts-loader": "^9.3.1",
"tsconfig-paths-webpack-plugin": "^4.0.0",
"tslib": "^2.4.0",
"typescript": "^4.6.3",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@cosmjs/crypto": "^0.28.4",
"@cosmjs/encoding": "^0.28.4",
"@polkadot/util": "^10.1.11",
"@polkadot/util-crypto": "^10.1.11",
"@types/elliptic": "^6.4.14",
"@types/secp256k1": "^4.0.3",
"bech32": "^2.0.0",
"elliptic": "^6.5.4",
"immutable": "^4.1.0",
"process": "^0.11.10",
"secp256k1": "^4.0.3",
"synchronized-promise": "^0.3.1",
"util": "^0.12.4"
}
}