-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.93 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.93 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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
{
"name": "create-teamcode",
"type": "module",
"version": "0.2.1",
"main": "./dist/index.js",
"module": "./dist/index.js",
"files": [
"dist",
"README.md"
],
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/bun": "latest",
"@types/degit": "^2.8.6",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.3",
"typescript-eslint": "^8.59.2"
},
"dependencies": {
"@clack/prompts": "^1.3.0",
"degit": "^2.8.4",
"picocolors": "^1.1.1"
},
"scripts": {
"start": "bun index.ts",
"build": "bun build index.ts --outdir dist --target bun",
"compile:linux-x64": "bun build index.ts --compile --minify --outfile dist/linux-x64 --target bun-linux-x64",
"compile:linux-arm64": "bun build index.ts --compile --minify --outfile dist/linux-arm64 --target bun-linux-arm64",
"compile:windows-x64": "bun build index.ts --compile --minify --outfile dist/windows-x64 --target bun-windows-x64",
"compile:windows-arm64": "bun build index.ts --compile --minify --outfile dist/windows-arm64 --target bun-windows-arm64",
"compile:darwin-x64": "bun build index.ts --compile --minify --outfile dist/darwin-x64 --target bun-darwin-x64",
"compile:darwin-arm64": "bun build index.ts --compile --minify --outfile dist/darwin-arm64 --target bun-darwin-arm64",
"compile:linux-x64-musl": "bun build index.ts --compile --minify --outfile dist/linux-x64-musl --target bun-linux-x64-musl",
"compile:linux-arm64-musl": "bun build index.ts --compile --minify --outfile dist/linux-arm64-musl --target bun-linux-arm64-musl",
"compile": "bun run compile:linux-x64 && bun run compile:linux-arm64 && bun run compile:windows-x64 && bun run compile:windows-arm64 && bun run compile:darwin-x64 && bun run compile:darwin-arm64 && bun run compile:linux-x64-musl && bun run compile:linux-arm64-musl"
},
"bin": {
"create-teamcode": "./dist/index.js"
},
"license": "BSD-3-Clause"
}