forked from MrLesk/Backlog.md
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.82 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.82 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@thewlabs/backlog",
"version": "0.0.0",
"type": "module",
"bin": {
"backlog": "cli/index.js"
},
"dependencies": {
"blessed": "npm:neo-neo-bblessed@1.0.3"
},
"optionalDependencies": {
"backlog.md-darwin-arm64": "*",
"backlog.md-darwin-x64": "*",
"backlog.md-linux-arm64": "*",
"backlog.md-linux-x64": "*",
"backlog.md-windows-x64": "*"
},
"devDependencies": {
"@biomejs/biome": "2.1.1",
"@types/bun": "1.2.17",
"@types/prompts": "2.4.9",
"@types/react": "^19.1.8",
"@types/react-dom": "^19.1.6",
"@uiw/react-md-editor": "^4.0.7",
"commander": "14.0.0",
"gray-matter": "4.0.3",
"husky": "9.1.7",
"lint-staged": "16.1.2",
"prompts": "2.4.2",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"typescript": "^5.8.3"
},
"scripts": {
"test": "bun test",
"test:windows": "bun test --timeout=15000",
"format": "biome format --write .",
"lint": "biome lint --write .",
"check": "biome check .",
"prepare": "husky",
"build": "bun build --compile --minify --outfile=dist/backlog src/cli.ts",
"cli": "bun src/cli.ts"
},
"lint-staged": {
"package.json": [
"biome check --write --files-ignore-unknown=true"
],
"*.json": [
"biome check --write --files-ignore-unknown=true"
],
"src/**/*.{ts,js}": [
"biome check --write --files-ignore-unknown=true"
]
},
"author": {
"name": "thewlabs",
"email": "contact@thewlabs.com",
"url": "https://github.com/thewlabs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thewlabs/backlog.git"
},
"bugs": {
"url": "https://github.com/thewlabs/backlog/issues"
},
"homepage": "https://github.com/thewlabs/backlog#readme",
"keywords": [
"cli",
"markdown",
"kanban",
"task",
"project-management",
"backlog",
"agents"
],
"license": "MIT",
"trustedDependencies": [
"@biomejs/biome",
"node-pty"
]
}