backlog-drift 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +183 -0
- package/dist/index.js +22831 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "backlog-drift",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "AI-powered drift detection for Backlog.md",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "dist/index.js",
|
|
7
|
+
"bin": {
|
|
8
|
+
"backlog-drift": "dist/index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"dist/",
|
|
12
|
+
"LICENSE",
|
|
13
|
+
"README.md"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "bun run src/index.ts",
|
|
17
|
+
"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'))\"",
|
|
18
|
+
"test": "bun test",
|
|
19
|
+
"check": "biome check src/",
|
|
20
|
+
"check:fix": "biome check --write src/",
|
|
21
|
+
"check:types": "tsc --noEmit",
|
|
22
|
+
"prepublishOnly": "bun run check:types && bun run check && bun test && bun run build"
|
|
23
|
+
},
|
|
24
|
+
"repository": {
|
|
25
|
+
"type": "git",
|
|
26
|
+
"url": "git+https://github.com/ReliableGenius/backlog.md-drift.git"
|
|
27
|
+
},
|
|
28
|
+
"author": "",
|
|
29
|
+
"license": "MIT",
|
|
30
|
+
"bugs": {
|
|
31
|
+
"url": "https://github.com/ReliableGenius/backlog.md-drift/issues"
|
|
32
|
+
},
|
|
33
|
+
"homepage": "https://github.com/ReliableGenius/backlog.md-drift#readme",
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=18.0.0"
|
|
36
|
+
},
|
|
37
|
+
"keywords": [
|
|
38
|
+
"backlog",
|
|
39
|
+
"drift",
|
|
40
|
+
"task-management",
|
|
41
|
+
"git-hooks",
|
|
42
|
+
"cli",
|
|
43
|
+
"ai",
|
|
44
|
+
"llm",
|
|
45
|
+
"backlog-md"
|
|
46
|
+
],
|
|
47
|
+
"dependencies": {
|
|
48
|
+
"commander": "^13.1.0",
|
|
49
|
+
"gray-matter": "^4.0.3",
|
|
50
|
+
"picocolors": "^1.1.1",
|
|
51
|
+
"simple-git": "^3.27.0",
|
|
52
|
+
"yaml": "^2.7.0",
|
|
53
|
+
"zod": "^3.24.2"
|
|
54
|
+
},
|
|
55
|
+
"devDependencies": {
|
|
56
|
+
"@biomejs/biome": "^1.9.4",
|
|
57
|
+
"@types/bun": "^1.2.5",
|
|
58
|
+
"bun-types": "^1.2.5",
|
|
59
|
+
"typescript": "^5.7.3"
|
|
60
|
+
}
|
|
61
|
+
}
|