codebase-ai 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/README.md +309 -0
- package/commands/build.md +171 -0
- package/commands/launch.md +220 -0
- package/commands/review.md +150 -0
- package/commands/setup.md +220 -0
- package/commands/simulate.md +177 -0
- package/dist/index.js +608 -0
- package/package.json +56 -0
package/package.json
ADDED
|
@@ -0,0 +1,56 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "codebase-ai",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "One command. Every AI tool understands your project instantly.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"homepage": "https://github.com/ZySec-AI/codebase",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "https://github.com/ZySec-AI/codebase.git"
|
|
10
|
+
},
|
|
11
|
+
"bin": {
|
|
12
|
+
"codebase": "./dist/index.js"
|
|
13
|
+
},
|
|
14
|
+
"main": "./dist/index.js",
|
|
15
|
+
"scripts": {
|
|
16
|
+
"build": "tsup",
|
|
17
|
+
"dev": "tsup --watch",
|
|
18
|
+
"test": "vitest run",
|
|
19
|
+
"test:watch": "vitest",
|
|
20
|
+
"test:coverage": "vitest run --coverage",
|
|
21
|
+
"lint": "eslint src tests",
|
|
22
|
+
"lint:fix": "eslint src tests --fix",
|
|
23
|
+
"format": "prettier --write src tests",
|
|
24
|
+
"format:check": "prettier --check src tests",
|
|
25
|
+
"check": "tsc --noEmit && eslint src tests && prettier --check src tests",
|
|
26
|
+
"typecheck": "tsc --noEmit",
|
|
27
|
+
"prepublishOnly": "npm run build"
|
|
28
|
+
},
|
|
29
|
+
"engines": {
|
|
30
|
+
"node": ">=18"
|
|
31
|
+
},
|
|
32
|
+
"files": [
|
|
33
|
+
"dist",
|
|
34
|
+
"commands"
|
|
35
|
+
],
|
|
36
|
+
"keywords": [
|
|
37
|
+
"codebase",
|
|
38
|
+
"ai",
|
|
39
|
+
"context",
|
|
40
|
+
"manifest",
|
|
41
|
+
"mcp",
|
|
42
|
+
"claude",
|
|
43
|
+
"developer-tools"
|
|
44
|
+
],
|
|
45
|
+
"license": "MIT",
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@eslint/js": "^9.18.0",
|
|
48
|
+
"@types/node": "^22.10.0",
|
|
49
|
+
"eslint": "^9.18.0",
|
|
50
|
+
"prettier": "^3.8.1",
|
|
51
|
+
"tsup": "^8.0.0",
|
|
52
|
+
"typescript": "^5.4.0",
|
|
53
|
+
"typescript-eslint": "^8.57.1",
|
|
54
|
+
"vitest": "^1.6.0"
|
|
55
|
+
}
|
|
56
|
+
}
|