-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.46 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.46 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
{
"name": "codecity-ai",
"version": "1.0.0",
"description": "CodeCity AI is an AI plugin that visualizes codebases as isometric 2.5D cities. Give an agent a directory and it walks the tree, collects file metadata and git history, then assembles a single self-contained HTML file you can open in any browser. Directories become streets — wide boulevards for large directories, narrow alleys for small ones. Files become buildings whose shape and color encode information: how big the file is, how old it is, when it was last touched, and what language it is written in.",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"dev": "python3 src/codecity.py --dev --root .",
"build": "vite build",
"test": "vitest run && npm run test:scripts && npm run test:drift",
"test:unit": "vitest run",
"test:scripts": "bash tests/scripts/run-all.sh",
"test:drift": "bash tests/scripts/test-drift.sh",
"test:watch": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thalida/codecity-ai.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"type": "commonjs",
"bugs": {
"url": "https://github.com/thalida/codecity-ai/issues"
},
"homepage": "https://github.com/thalida/codecity-ai#readme",
"devDependencies": {
"jsdom": "^29.0.2",
"three": "^0.184.0",
"vite": "^8.0.8",
"vite-plugin-singlefile": "^2.3.3",
"vitest": "^4.1.4"
}
}