-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1.26 KB
/
package.json
File metadata and controls
25 lines (25 loc) · 1.26 KB
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
{
"name": "temper-cli",
"version": "0.1.0",
"description": "Homebrew for code snippets - run, search, and edit reusable code utilities",
"license": "MIT",
"type": "module",
"bin": {
"temper": "./bin/temper.ts"
},
"scripts": {
"dev": "bun run bin/temper.ts",
"build": "bun build --compile --minify ./bin/temper.ts --outfile dist/temper",
"build:all": "bun run build:linux-x64 && bun run build:linux-arm64 && bun run build:darwin-x64 && bun run build:darwin-arm64 && bun run build:windows-x64",
"build:linux-x64": "bun build --compile --minify --target=bun-linux-x64 ./bin/temper.ts --outfile dist/temper-linux-x64",
"build:linux-arm64": "bun build --compile --minify --target=bun-linux-arm64 ./bin/temper.ts --outfile dist/temper-linux-arm64",
"build:darwin-x64": "bun build --compile --minify --target=bun-darwin-x64 ./bin/temper.ts --outfile dist/temper-darwin-x64",
"build:darwin-arm64": "bun build --compile --minify --target=bun-darwin-arm64 ./bin/temper.ts --outfile dist/temper-darwin-arm64",
"build:windows-x64": "bun build --compile --minify --target=bun-windows-x64 ./bin/temper.ts --outfile dist/temper-windows-x64.exe",
"test": "bun test"
},
"dependencies": {},
"devDependencies": {
"@types/bun": "latest"
}
}