-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.2 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.2 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
{
"name": "startidy",
"version": "1.0.2",
"description": "AI-powered CLI tool to automatically organize your GitHub Stars into Lists",
"type": "module",
"bin": {
"startidy": "./dist/index.js"
},
"main": "./dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "bun build src/index.ts --outdir dist --target node --format esm",
"start": "bun run src/index.ts",
"dev": "bun run src/index.ts",
"prepublishOnly": "npm run build"
},
"keywords": [
"github",
"stars",
"lists",
"organize",
"ai",
"gemini",
"cli",
"automation"
],
"author": "hellosunghyun",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/hellosunghyun/startidy.git"
},
"bugs": {
"url": "https://github.com/hellosunghyun/startidy/issues"
},
"homepage": "https://github.com/hellosunghyun/startidy#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@google/genai": "^0.14.0",
"@inquirer/prompts": "^7.0.0",
"commander": "^12.1.0",
"dotenv": "^17.2.3",
"ora": "^8.1.0"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^20.0.0",
"typescript": "^5.6.0"
}
}