forked from ronanyeah/mineral-app
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
28 lines (28 loc) · 833 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
{
"scripts": {
"build": "webpack",
"watch": "webpack serve",
"build:cli": "npm run build:cli:js && npm run build:pkg",
"build:pkg": "pkg -t latest-linux,latest-win,latest-macos cli/index.js -o ./cli/mineral",
"build:cli:js": "webpack --config webpack.cli.js",
"worker:build": "webpack --config webpack.worker.js",
"worker:watch": "webpack serve --config webpack.worker.js"
},
"dependencies": {
"@mysten/sui.js": "^0.54.1",
"@noble/hashes": "^1.4.0",
"commander": "^12.0.0",
"elm": "^0.19.1-3",
"elm-webpack-loader": "^8.0.0",
"numbro": "^2.5.0",
"ts-loader": "^9.4.2",
"typescript": "^5.0.2",
"webpack": "^5.39.1",
"webpack-cli": "^5.0.1"
},
"devDependencies": {
"elm-reloader": "^1.0.0",
"pkg": "^5.8.1",
"webpack-dev-server": "^5.0.4"
}
}