-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.27 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
38
39
40
41
42
43
44
45
46
47
{
"name": "interactive-code-map",
"version": "0.1.1",
"description": "A cross-client skill that turns codebase evidence into a single interactive HTML code map.",
"author": "YuLaiZ",
"license": "MIT",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/YuLaiZ/interactive-code-map.git"
},
"homepage": "https://github.com/YuLaiZ/interactive-code-map#readme",
"bugs": {
"url": "https://github.com/YuLaiZ/interactive-code-map/issues"
},
"keywords": [
"skill",
"agent",
"code-map",
"mermaid",
"react",
"code-visualization",
"codebase"
],
"engines": {
"node": ">=20"
},
"scripts": {
"test:mapspec:core": "node tests/mapspec/run-tests.mjs",
"test:mapspec": "npm run test:mapspec:core && node tests/mapspec/schema-diff.test.mjs",
"test:build": "node tests/build/run-tests.mjs",
"test:browser": "playwright test",
"ajv:strict": "node tests/mapspec/ajv-strict.mjs",
"test": "npm run test:mapspec && npm run test:build && npm run test:browser"
},
"devDependencies": {
"@playwright/test": "1.62.1",
"ajv": "8.20.0",
"ajv-cli": "5.0.0",
"mermaid": "11.16.1",
"react": "18.3.1",
"react-dom": "18.3.1"
},
"overrides": {
"fast-json-patch": "3.1.1"
}
}