-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1007 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1007 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
{
"name": "@os-eco/seeds-cli",
"version": "0.2.5",
"description": "Git-native issue tracker for AI agent workflows",
"type": "module",
"bin": {
"sd": "./src/index.ts"
},
"main": "src/index.ts",
"files": ["src"],
"publishConfig": {
"access": "public"
},
"engines": {
"bun": ">=1.0.0"
},
"keywords": ["issue-tracking", "git", "ai", "agents", "cli", "developer-tools"],
"author": "Jaymin West",
"license": "MIT",
"homepage": "https://github.com/jayminwest/seeds",
"bugs": {
"url": "https://github.com/jayminwest/seeds/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/jayminwest/seeds.git"
},
"scripts": {
"test": "bun test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit",
"version:bump": "bun run scripts/version-bump.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.4.6",
"@types/bun": "latest",
"typescript": "^5.9.0"
},
"dependencies": {
"chalk": "^5.6.2",
"commander": "^14.0.3"
}
}