-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.43 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
{
"scripts": {
"build-ts": "tsc",
"build-win-new": "npm run build-ts && npm run build-win",
"build-html": "rm -rf .parcel-cache && npx parcel build index.html",
"build-win": "npx pkg --debug -o dist/packaged/qubic-helper-win-64.exe --targets node16-win-x64 dist/index.js",
"build-linux": "npx pkg --debug -o dist/packaged/qubic-helper-linux-64 --targets node16-linux-x64 dist/index.js",
"build-mac": "npx pkg --debug -o dist/packaged/qubic-helper-mac-64 --targets node16-macos-x64 dist/index.js",
"build-html-ts": "npm run build-ts && npm run build-html",
"build": "npm run build-ts && npm run build-html && npm run build-win",
"build-all": "npm run build-ts && rm -rf .parcel-cache && npm run build-html && npm run build-win && npm run build-linux && npm run build-mac"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@jest/globals": "^29.7.0",
"@types/node": "^20.11.17",
"buffer": "^5.5.0||^6.0.0",
"crypto-browserify": "^3.12.0",
"events": "^3.3.0",
"jest": "^29.7.0",
"process": "^0.11.10",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"ts-jest": "^29.1.4",
"vm-browserify": "^1.1.2"
},
"dependencies": {
"@qubic-lib/qubic-ts-library": "^0.1.5",
"@qubic-lib/qubic-ts-vault-library": "^1.0.2",
"bignumber.js": "^4.0.4",
"functioneer": "^1.0.4",
"qubic-ts-library": "^0.0.7",
"typescript": "^5.4.5"
}
}