-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 2.26 KB
/
Copy pathpackage.json
File metadata and controls
42 lines (42 loc) · 2.26 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
{
"name": "unbound-map",
"version": "0.1.0",
"description": "A shareable, graph-backed field guide to a repository's architecture before the source.",
"private": false,
"license": "Apache-2.0",
"repository": { "type": "git", "url": "git+https://github.com/UnboundCompute/Unbound-Map.git" },
"homepage": "https://map.unboundcompute.com",
"bugs": { "url": "https://github.com/UnboundCompute/Unbound-Map/issues" },
"keywords": ["architecture", "code-understanding", "developer-tools", "documentation", "graph", "lachesis", "open-source"],
"packageManager": "pnpm@11.22.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"smoke": "node scripts/route-smoke.mjs",
"hosted-smoke": "node --experimental-strip-types scripts/hosted-smoke.mjs",
"explorer-smoke": "node --experimental-strip-types scripts/explorer-integration-smoke.mjs",
"projection-smoke": "node --experimental-strip-types scripts/projection-smoke.mjs",
"verify:build-polling": "node --experimental-strip-types scripts/verify-build-polling.mjs",
"verify:response-bounds": "node --experimental-strip-types scripts/verify-response-bounds.mjs",
"verify:casefile-links": "node --experimental-strip-types scripts/verify-casefile-links.mjs",
"verify:repository-intake": "node --experimental-strip-types scripts/verify-repository-intake.mjs",
"verify:sitemap": "node --experimental-strip-types scripts/verify-sitemap.mjs",
"verify:seo": "node --experimental-strip-types scripts/verify-seo.mjs",
"verify:analytics": "node --experimental-strip-types scripts/verify-analytics.mjs",
"verify:artifact-contract": "node scripts/verify-artifact-contract.mjs",
"check": "tsc --noEmit && npm run verify:build-polling && npm run verify:response-bounds && npm run verify:repository-intake && npm run projection-smoke && node scripts/hosted-smoke.mjs && npm run verify:casefile-links && npm run verify:sitemap && npm run verify:seo && npm run verify:analytics && npm run verify:artifact-contract"
},
"dependencies": {
"@vercel/analytics": "1.6.1",
"next": "16.3.4",
"react": "^19",
"react-dom": "^19"
},
"devDependencies": {
"@types/node": "^24",
"@types/react": "^19",
"@types/react-dom": "^19",
"typescript": "5.7.3"
}
}