-
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) · 909 Bytes
/
package.json
File metadata and controls
48 lines (48 loc) · 909 Bytes
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": "dev-clean",
"version": "1.0.9",
"description": "Detect and kill lingering dev server processes",
"type": "module",
"bin": {
"dev-clean": "dist/cli.js"
},
"files": [
"dist",
"README.md",
"README.ja.md",
"CLAUDE.md",
"AGENTS.md"
],
"scripts": {
"build": "bun build.ts",
"prepare": "bun run build",
"typecheck": "tsc --noEmit",
"lint": "biome check .",
"format": "biome check --write --unsafe .",
"test": "bun test"
},
"keywords": [
"dev",
"clean",
"process",
"kill",
"port"
],
"author": "yuu1111",
"repository": {
"type": "git",
"url": "git+https://github.com/yuu1111/dev-clean.git"
},
"engines": {
"node": ">=18.3.0"
},
"license": "MIT",
"devDependencies": {
"@biomejs/biome": "^2.4.8",
"@types/bun": "^1.3.10",
"@yuu1111/biome-config": "^1.0.3",
"@yuu1111/tsconfig": "^1.0.2",
"esbuild": "^0.27.4",
"typescript": "^5.9.3"
}
}