-
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) · 1.26 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.26 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": "github-star-auto-organizer",
"version": "0.1.0",
"description": "Preview-first CLI that classifies GitHub Stars and safely organizes them into GitHub Star Lists.",
"type": "module",
"bin": {
"star-organizer": "./dist/cli.js"
},
"files": [
"dist",
"docs/assets",
"examples",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "tsx src/cli.ts",
"test": "vitest run",
"check": "npm run build && npm run test",
"prepack": "npm run build",
"prepublishOnly": "npm run check"
},
"keywords": [
"github",
"stars",
"star-list",
"cli",
"organizer",
"typescript",
"llm",
"automation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ybbms777/github-star-auto-organizer.git"
},
"bugs": {
"url": "https://github.com/ybbms777/github-star-auto-organizer/issues"
},
"homepage": "https://github.com/ybbms777/github-star-auto-organizer#readme",
"author": "",
"license": "MIT",
"dependencies": {
"commander": "^14.0.0",
"yaml": "^2.8.0"
},
"devDependencies": {
"@types/node": "^24.0.0",
"tsx": "^4.20.0",
"typescript": "^5.9.0",
"vitest": "^4.0.0"
},
"engines": {
"node": ">=20"
}
}