-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.18 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.18 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
49
50
51
52
53
54
55
56
57
{
"name": "localhostkiller",
"version": "0.1.0",
"private": true,
"description": "Find and kill any process listening on a localhost port (127.0.0.1, 0.0.0.0, ::1). Fixes EADDRINUSE. Ships as a VS Code extension and a Windows desktop app. Open-source, MIT.",
"keywords": [
"localhost",
"port",
"port-killer",
"kill-port",
"EADDRINUSE",
"address-already-in-use",
"taskkill",
"netstat",
"vscode-extension",
"electron",
"developer-tools",
"dev-server",
"windows",
"free-port",
"kill-process",
"node-port",
"vite",
"nextjs",
"react-dev-server"
],
"license": "MIT",
"author": "localhostkiller contributors",
"homepage": "https://github.com/system-conf/localhostkiller#readme",
"bugs": {
"url": "https://github.com/system-conf/localhostkiller/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/system-conf/localhostkiller.git"
},
"workspaces": [
"packages/core",
"packages/vscode-extension",
"packages/windows-app"
],
"scripts": {
"build": "npm run build -w @localhostkiller/core && npm run build -w localhostkiller-vscode && npm run build -w localhostkiller-app",
"build:core": "npm run build -w @localhostkiller/core",
"build:vscode": "npm run build -w localhostkiller-vscode",
"build:app": "npm run build -w localhostkiller-app",
"dev:vscode": "npm run watch -w localhostkiller-vscode",
"dev:app": "npm run dev -w localhostkiller-app",
"package:vscode": "npm run package -w localhostkiller-vscode",
"package:app": "npm run package -w localhostkiller-app",
"icons:generate": "powershell -NoProfile -ExecutionPolicy Bypass -File scripts/generate-icons.ps1",
"clean": "node -e \"require('fs').rmSync('packages/core/dist',{recursive:true,force:true});require('fs').rmSync('packages/vscode-extension/out',{recursive:true,force:true});require('fs').rmSync('packages/windows-app/dist-main',{recursive:true,force:true});require('fs').rmSync('packages/windows-app/dist-renderer',{recursive:true,force:true});require('fs').rmSync('packages/windows-app/release',{recursive:true,force:true});\""
},
"devDependencies": {
"typescript": "^5.5.4"
}
}