codebrief 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/package.json ADDED
@@ -0,0 +1,64 @@
1
+ {
2
+ "name": "codebrief",
3
+ "version": "1.0.0",
4
+ "description": "Bootstrap optimized AI context files for any project — auto-detect stack, generate code snapshots, produce config for Claude Code, Cursor, Copilot, Windsurf, Cline, Continue, Aider, and more.",
5
+ "type": "module",
6
+ "bin": {
7
+ "codebrief": "dist/index.js"
8
+ },
9
+ "scripts": {
10
+ "build": "tsup",
11
+ "dev": "tsup --watch",
12
+ "start": "node dist/index.js",
13
+ "test": "vitest run",
14
+ "test:watch": "vitest",
15
+ "typecheck": "tsc --noEmit",
16
+ "prepublishOnly": "npm run build"
17
+ },
18
+ "keywords": [
19
+ "ai",
20
+ "context",
21
+ "claude",
22
+ "cursor",
23
+ "opencode",
24
+ "copilot",
25
+ "windsurf",
26
+ "cline",
27
+ "continue",
28
+ "aider",
29
+ "bootstrap",
30
+ "cli"
31
+ ],
32
+ "author": "Michael Abrt",
33
+ "license": "MIT",
34
+ "repository": {
35
+ "type": "git",
36
+ "url": "git+https://github.com/michaelabrt/codebrief.git"
37
+ },
38
+ "homepage": "https://github.com/michaelabrt/codebrief#readme",
39
+ "bugs": {
40
+ "url": "https://github.com/michaelabrt/codebrief/issues"
41
+ },
42
+ "engines": {
43
+ "node": ">=18"
44
+ },
45
+ "files": [
46
+ "dist"
47
+ ],
48
+ "dependencies": {
49
+ "@clack/prompts": "^1.0.1",
50
+ "fast-glob": "^3.3.3",
51
+ "picocolors": "^1.1.1"
52
+ },
53
+ "devDependencies": {
54
+ "@commitlint/cli": "^19.0.0",
55
+ "@commitlint/config-conventional": "^19.0.0",
56
+ "@semantic-release/changelog": "^6.0.0",
57
+ "@semantic-release/git": "^10.0.0",
58
+ "@types/node": "^22.0.0",
59
+ "semantic-release": "^24.0.0",
60
+ "tsup": "^8.4.0",
61
+ "typescript": "^5.7.0",
62
+ "vitest": "^4.0.18"
63
+ }
64
+ }