-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.49 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.49 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
{
"name": "backlog-drift",
"version": "0.1.3",
"description": "AI-powered drift detection for Backlog.md",
"type": "module",
"main": "dist/index.js",
"bin": {
"backlog-drift": "dist/index.js"
},
"files": [
"dist/",
"LICENSE",
"README.md"
],
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir dist --target node && node -e \"const fs=require('fs');const f='dist/index.js';const c=fs.readFileSync(f,'utf8');fs.writeFileSync(f,c.replace('#!/usr/bin/env bun','#!/usr/bin/env node'))\"",
"test": "bun test",
"check": "biome check src/",
"check:fix": "biome check --write src/",
"check:types": "tsc --noEmit",
"prepublishOnly": "bun run check:types && bun run check && bun test && bun run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ReliableGenius/backlog.md-drift.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/ReliableGenius/backlog.md-drift/issues"
},
"homepage": "https://github.com/ReliableGenius/backlog.md-drift#readme",
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"backlog",
"drift",
"task-management",
"git-hooks",
"cli",
"ai",
"llm",
"backlog-md"
],
"dependencies": {
"commander": "^13.1.0",
"gray-matter": "^4.0.3",
"picocolors": "^1.1.1",
"simple-git": "^3.27.0",
"yaml": "^2.7.0",
"zod": "^3.24.2"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.2.5",
"bun-types": "^1.2.5",
"typescript": "^5.7.3"
}
}