-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.41 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
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "dems-cli",
"version": "0.0.1",
"description": "DEMS (Development Environment Management System) CLI",
"author": "Angel Adames <[email protected]>",
"main": "dist/cli.js",
"module": "cli.ts",
"type": "module",
"private": true,
"bin": {
"dems": "./dist/cli.js"
},
"scripts": {
"build": "bun build --target=bun ./cli.ts --outdir dist/",
"compile": "bun build --compile --minify --sourcemap ./cli.ts --outfile ./dems",
"compile:linux": "bun build --compile --target=bun-linux-x64 --minify --sourcemap ./cli.ts --outfile ./dems-linux-x64",
"compile:windows": "bun build --compile --target=bun-windows-x64 --minify --sourcemap ./cli.ts --outfile ./dems-windows-x64",
"compile:macos": "bun build --compile --target=bun-darwin-x64 --minify --sourcemap ./cli.ts --outfile ./dems-macos-x64",
"format": "biome format src/ test/ --write",
"format:ci": "biome format src/ test/",
"lint": "biome lint src/ test/ --write",
"lint:ci": "biome lint src/ test/",
"check": "biome check src/ test/ --write",
"check:ci": "biome check src/ test/",
"test": "bun test"
},
"devDependencies": {
"@biomejs/biome": "^1.8.3"
},
"peerDependencies": {
"typescript": "^5.3.3"
},
"dependencies": {
"@inquirer/prompts": "^7.0.0",
"bun-types": "^1.1.21",
"chalk": "^5.3.0",
"commander": "^12.1.0",
"pino": "^9.3.2",
"pino-pretty": "^13.0.0"
}
}