-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 1.08 KB
/
package.json
File metadata and controls
23 lines (23 loc) · 1.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "pktools",
"version": "2.0.0",
"description": "",
"main": "index.js",
"scripts": {
"build:win64": "bun build ./index.js --compile --target=bun-windows-x64 --outfile ./out/pktools_win_x64",
"build:winarm": "bun build ./index.js --compile --target=bun-windows-arm64 --outfile ./out/pktools_win_arm64",
"build:linux64": "bun build ./index.js --compile --target=bun-linux-x64 --outfile ./out/pktools_linux_x64",
"build:linuxarm": "bun build ./index.js --compile --target=bun-linux-arm64 --outfile ./out/pktools_linux_arm64",
"build:mac64": "bun build ./index.js --compile --target=bun-darwin-x64 --outfile ./out/pktools_darwin_x64",
"build:macarm": "bun build ./index.js --compile --target=bun-darwin-arm64 --outfile ./out/pktools_darwin_arm64",
"build:all": "bun run build:win64 && bun run build:winarm && bun run build:linux64 && bun run build:linuxarm && bun run build:mac64 && bun run build:macarm"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "module",
"dependencies": {
"@clack/prompts": "1.1.0",
"pkapi.js": "^7.5.1"
}
}