-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
22 lines (22 loc) · 1.03 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
{
"name": "dp-bundler",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"start": "bun index.js",
"build-windows": "bun build ./index.ts --compile --minify --sourcemap --target bun-windows-x64 --outfile=./dist/dp_bundler-windows",
"build-mac": "bun build ./index.ts --compile --minify --sourcemap --target bun-darwin-arm64 --outfile=./dist/dp_bundler-mac_arm && bun build ./index.ts --compile --minify --sourcemap --target bun-darwin-x64 --outfile=./dist/dp_bundler-mac_x64",
"build-linux": "bun build ./index.ts --compile --minify --sourcemap --target bun-linux-x64 --outfile=./dist/dp_bundler-linux_x64 && bun build ./index.ts --compile --minify --sourcemap --target bun-linux-arm64 --outfile=./dist/dp_bundler-linux_arm",
"build": "rm -rf ./dist && bun run build-mac && bun run build-windows && bun run build-linux"
},
"dependencies": {
"@inquirer/prompts": "^7.0.1",
"yoctocolors-cjs": "^2.1.2"
}
}