-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.63 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.63 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
43
44
45
46
47
48
{
"name": "upkeep",
"version": "0.1.7",
"type": "module",
"description": "A JS/TS repository maintenance toolkit built with Bun",
"main": "./src/cli/index.ts",
"bin": {
"upkeep": "./src/cli/index.ts"
},
"scripts": {
"dev": "bun run src/cli/index.ts",
"build": "bun build ./src/cli/index.ts --compile --outfile dist/upkeep",
"build:all": "bun run build:linux-x64 && bun run build:darwin-arm64 && bun run build:darwin-x64 && bun run build:windows-x64",
"build:linux-x64": "bun build ./src/cli/index.ts --compile --target=bun-linux-x64 --outfile dist/upkeep-linux-x64",
"build:darwin-arm64": "bun build ./src/cli/index.ts --compile --target=bun-darwin-arm64 --outfile dist/upkeep-darwin-arm64",
"build:darwin-x64": "bun build ./src/cli/index.ts --compile --target=bun-darwin-x64 --outfile dist/upkeep-darwin-x64",
"build:windows-x64": "bun build ./src/cli/index.ts --compile --target=bun-windows-x64 --outfile dist/upkeep-windows-x64.exe",
"test": "bun test",
"test:watch": "bun test --watch",
"test:coverage": "bun test --coverage",
"typecheck": "tsc --noEmit",
"lint": "biome check src tests",
"lint:fix": "biome check --write src tests",
"format": "biome format --write src tests"
},
"keywords": [
"cli",
"maintenance",
"dependencies",
"audit",
"typescript",
"bun"
],
"author": "Logan Lindquist Land",
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/bun": "^1.3.10",
"pino-pretty": "^13.1.3",
"typescript": "^5.3.0"
},
"engines": {
"bun": ">=1.0.0"
},
"dependencies": {
"pino": "^10.3.1"
}
}