@macroscope/cli 0.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/README.md +14 -0
- package/dist/cli.d.ts +1 -0
- package/dist/cli.js +1473 -0
- package/dist/cli.js.map +1 -0
- package/dist/core/index.d.ts +125 -0
- package/dist/core/index.js +483 -0
- package/dist/core/index.js.map +1 -0
- package/dist/index-BTDioymD.d.ts +177 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +6 -0
- package/dist/index.js.map +1 -0
- package/dist/ui/assets/index-ByDfVdzb.css +1 -0
- package/dist/ui/assets/index-D3mfLpRq.js +45 -0
- package/dist/ui/assets/index-D3mfLpRq.js.map +1 -0
- package/dist/ui/index.html +13 -0
- package/package.json +75 -0
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html lang="en">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8" />
|
|
5
|
+
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
6
|
+
<title>Macroscope</title>
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-D3mfLpRq.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="/assets/index-ByDfVdzb.css">
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<div id="root"></div>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
package/package.json
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@macroscope/cli",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"publishConfig": {
|
|
5
|
+
"access": "public",
|
|
6
|
+
"provenance": true
|
|
7
|
+
},
|
|
8
|
+
"description": "Architectural-altitude tooling: a catalogue of typed building blocks for AI-collaborative software",
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"type": "module",
|
|
11
|
+
"engines": {
|
|
12
|
+
"node": ">=20"
|
|
13
|
+
},
|
|
14
|
+
"main": "./dist/index.js",
|
|
15
|
+
"module": "./dist/index.js",
|
|
16
|
+
"types": "./dist/index.d.ts",
|
|
17
|
+
"exports": {
|
|
18
|
+
".": {
|
|
19
|
+
"types": "./dist/index.d.ts",
|
|
20
|
+
"import": "./dist/index.js"
|
|
21
|
+
},
|
|
22
|
+
"./core": {
|
|
23
|
+
"types": "./dist/core/index.d.ts",
|
|
24
|
+
"import": "./dist/core/index.js"
|
|
25
|
+
}
|
|
26
|
+
},
|
|
27
|
+
"bin": {
|
|
28
|
+
"macroscope": "dist/cli.js"
|
|
29
|
+
},
|
|
30
|
+
"files": ["dist", "README.md"],
|
|
31
|
+
"scripts": {
|
|
32
|
+
"build": "tsup && vite build",
|
|
33
|
+
"dev": "tsup --watch",
|
|
34
|
+
"test": "vitest run",
|
|
35
|
+
"test:watch": "vitest",
|
|
36
|
+
"test:ui": "vitest run --config vitest.ui.config.ts",
|
|
37
|
+
"test:integration": "vitest run --config vitest.integration.config.ts",
|
|
38
|
+
"typecheck": "tsc --noEmit"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@xterm/addon-fit": "^0.11.0",
|
|
42
|
+
"@xterm/xterm": "^6.0.0",
|
|
43
|
+
"commander": "^12.1.0",
|
|
44
|
+
"import-local": "^3.2.0",
|
|
45
|
+
"jiti": "^2.7.0",
|
|
46
|
+
"marked": "^18.0.3",
|
|
47
|
+
"open": "^11.0.0",
|
|
48
|
+
"react": "^19.2.6",
|
|
49
|
+
"react-dom": "^19.2.6",
|
|
50
|
+
"shiki": "^4.0.2",
|
|
51
|
+
"ws": "^8.20.1",
|
|
52
|
+
"yaml": "^2.6.0",
|
|
53
|
+
"zod": "^3.23.8",
|
|
54
|
+
"zustand": "^5.0.13"
|
|
55
|
+
},
|
|
56
|
+
"devDependencies": {
|
|
57
|
+
"@macroscope/contracts": "workspace:*",
|
|
58
|
+
"@tailwindcss/vite": "^4.3.0",
|
|
59
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
60
|
+
"@testing-library/react": "^16.3.2",
|
|
61
|
+
"@testing-library/user-event": "^14.6.1",
|
|
62
|
+
"@types/node": "^22.7.0",
|
|
63
|
+
"@types/react": "^19.2.14",
|
|
64
|
+
"@types/react-dom": "^19.2.3",
|
|
65
|
+
"@types/ws": "^8.18.1",
|
|
66
|
+
"@vitejs/plugin-react": "^6.0.2",
|
|
67
|
+
"happy-dom": "^20.9.0",
|
|
68
|
+
"lucide-react": "^1.16.0",
|
|
69
|
+
"tailwindcss": "^4.3.0",
|
|
70
|
+
"tsup": "^8.3.0",
|
|
71
|
+
"typescript": "^5.6.0",
|
|
72
|
+
"vite": "^8.0.13",
|
|
73
|
+
"vitest": "^2.1.0"
|
|
74
|
+
}
|
|
75
|
+
}
|