@better-vibe/repo-slice 1.0.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 +374 -0
- package/dist/cli.js +190243 -0
- package/package.json +68 -0
package/package.json
ADDED
|
@@ -0,0 +1,68 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@better-vibe/repo-slice",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "A deterministic CLI that extracts high-signal context bundles from repositories for AI-assisted coding workflows",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "Better Vibe",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/better-vibe/repo-slice.git"
|
|
11
|
+
},
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/better-vibe/repo-slice/issues"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/better-vibe/repo-slice#readme",
|
|
16
|
+
"keywords": [
|
|
17
|
+
"cli",
|
|
18
|
+
"context",
|
|
19
|
+
"ai",
|
|
20
|
+
"llm",
|
|
21
|
+
"code-analysis",
|
|
22
|
+
"monorepo",
|
|
23
|
+
"typescript",
|
|
24
|
+
"python"
|
|
25
|
+
],
|
|
26
|
+
"bin": {
|
|
27
|
+
"repo-slice": "./dist/cli.js"
|
|
28
|
+
},
|
|
29
|
+
"files": [
|
|
30
|
+
"dist",
|
|
31
|
+
"README.md",
|
|
32
|
+
"LICENSE"
|
|
33
|
+
],
|
|
34
|
+
"engines": {
|
|
35
|
+
"node": ">=18"
|
|
36
|
+
},
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public",
|
|
39
|
+
"registry": "https://registry.npmjs.org/"
|
|
40
|
+
},
|
|
41
|
+
"scripts": {
|
|
42
|
+
"clean": "rm -rf dist",
|
|
43
|
+
"typecheck": "tsc --noEmit",
|
|
44
|
+
"build": "bun build src/cli.ts --outdir dist --target node",
|
|
45
|
+
"dev": "bun run src/cli.ts",
|
|
46
|
+
"test": "bun test",
|
|
47
|
+
"test:unit": "bun test test/budget.test.ts test/output-md.test.ts test/output-json.test.ts test/workspaces.test.ts test/anchors-diff.test.ts test/anchors-log.test.ts",
|
|
48
|
+
"test:e2e": "bun test test/e2e.test.ts",
|
|
49
|
+
"changeset": "changeset",
|
|
50
|
+
"changeset:version": "changeset version",
|
|
51
|
+
"release": "bun run build && changeset publish",
|
|
52
|
+
"prepublishOnly": "bun run build"
|
|
53
|
+
},
|
|
54
|
+
"dependencies": {
|
|
55
|
+
"fast-glob": "^3.3.3",
|
|
56
|
+
"ignore": "^5.3.1",
|
|
57
|
+
"tree-sitter": "^0.21.1",
|
|
58
|
+
"tree-sitter-python": "^0.21.0",
|
|
59
|
+
"typescript": "^5.9.3",
|
|
60
|
+
"yaml": "^2.8.2"
|
|
61
|
+
},
|
|
62
|
+
"devDependencies": {
|
|
63
|
+
"@changesets/changelog-github": "^0.5.0",
|
|
64
|
+
"@changesets/cli": "^2.27.0",
|
|
65
|
+
"@types/bun": "^1.1.0",
|
|
66
|
+
"@types/node": "^20.14.9"
|
|
67
|
+
}
|
|
68
|
+
}
|