-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 933 Bytes
/
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
{
"name": "@stellar-expert/contract-wasm-interface-parser",
"version": "3.2.0",
"description": "Contract interface metadata parser for binary WASM",
"author": "orbitlens <[email protected]>",
"license": "MIT",
"main": "lib/wasmparser.js",
"module": "src/index.js",
"sideEffects": false,
"exports": {
"import": "./src/index.js",
"require": "./lib/wasmparser.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/stellar-expert/contract-wasm-interface-parser.git"
},
"scripts": {
"build": "webpack --mode=production --config webpack.config.cjs",
"test": "jest",
"prepublish": "npm run build"
},
"peerDependencies": {
"@stellar/stellar-base": ">=12"
},
"devDependencies": {
"@babel/core": "^7.24.8",
"@babel/preset-env": "^7.24.8",
"babel-loader": "^9.1.3",
"jest": "^29.7.0",
"webpack": "^5.93.0",
"webpack-cli": "^5.1.4"
}
}