-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1 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
{
"name": "smart-transaction-poc",
"version": "0.2.0",
"description": "Smart Transaction for Symbol PoC",
"main": "dist/index.js",
"author": "Shinichi Hanayama <[email protected]>",
"license": "MIT",
"private": false,
"dependencies": {
"dotenv": "^16.0.3",
"js-base64": "^3.7.3",
"js-sha3": "https://github.com/Propine/js-sha3.git",
"metal-on-symbol": "^0.2.4",
"rxjs": "^7.6.0",
"simple-exchange-wasm": "file:./webasm/simple-exchange/pkg",
"symbol-sdk": "^2.0.3"
},
"devDependencies": {
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"scripts": {
"clean": "rimraf dist && rimraf webasm/simple-exchange/pkg && rimraf webasm/simple-exchange/target",
"build-wasm": "cd webasm/simple-exchange && wasm-pack build --target web && node tweak-package-json.js && yarn && yarn upgrade simple-exchange-wasm",
"deploy-wasm": "metal forge -o src/metal.json webasm/simple-exchange/pkg/simple_exchange_wasm_bg.wasm",
"build": "tsc"
},
"type": "module"
}