-
Notifications
You must be signed in to change notification settings - Fork 40
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
66 lines (66 loc) · 1.59 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
58
59
60
61
62
63
64
65
66
{
"name": "delete-github-forks",
"version": "0.1.2",
"author": "Yangshun Tay",
"description": "Delete your GitHub forks in bulk.",
"keywords": [
"github",
"forks",
"cleanup",
"cli"
],
"homepage": "https://github.com/yangshun/delete-github-forks#readme",
"bugs": "https://github.com/yangshun/delete-github-forks/issues",
"repository": {
"type": "git",
"url": "git+https://github.com/yangshun/delete-github-forks.git"
},
"type": "module",
"bin": {
"delete-github-forks": "dist/cli.js"
},
"files": [
"dist",
"images",
"LICENSE",
"README.md"
],
"scripts": {
"build": "npm run clean && vite build && tsup",
"clean": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\"",
"dev": "npm run build && node dist/cli.js --no-open",
"prepublishOnly": "npm run typecheck && npm test && npm run build",
"start": "node dist/cli.js",
"test": "vitest run",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"@hono/node-server": "^2.0.8",
"get-port": "^7.2.0",
"hono": "^4.12.29",
"open": "^11.0.0",
"react": "^19.2.7",
"react-dom": "^19.2.7"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.3",
"happy-dom": "^20.10.6",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vite": "^8.1.4",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=20.19.0"
},
"publishConfig": {
"access": "public"
},
"overrides": {
"esbuild": "^0.28.1"
},
"license": "MIT"
}