@a-company/paradigm 3.21.0 → 3.23.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/dist/graph-5VSRBRKZ.js +163 -0
- package/dist/graph-server-BZ73HTAT.js +251 -0
- package/dist/index.js +8 -0
- package/dist/mcp.js +277 -16
- package/graph-ui/dist/assets/index-BlgXTl53.css +1 -0
- package/graph-ui/dist/assets/index-Bq5nXK8p.js +63 -0
- package/graph-ui/dist/index.html +13 -0
- package/package.json +4 -2
|
@@ -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.0" />
|
|
6
|
+
<title>Paradigm Graph</title>
|
|
7
|
+
<script type="module" crossorigin src="/assets/index-Bq5nXK8p.js"></script>
|
|
8
|
+
<link rel="stylesheet" crossorigin href="/assets/index-BlgXTl53.css">
|
|
9
|
+
</head>
|
|
10
|
+
<body>
|
|
11
|
+
<div id="root"></div>
|
|
12
|
+
</body>
|
|
13
|
+
</html>
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@a-company/paradigm",
|
|
3
|
-
"version": "3.
|
|
3
|
+
"version": "3.23.0",
|
|
4
4
|
"description": "Unified CLI for Paradigm developer tools",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -14,13 +14,15 @@
|
|
|
14
14
|
"files": [
|
|
15
15
|
"dist",
|
|
16
16
|
"templates",
|
|
17
|
-
"lore-ui/dist"
|
|
17
|
+
"lore-ui/dist",
|
|
18
|
+
"graph-ui/dist"
|
|
18
19
|
],
|
|
19
20
|
"scripts": {
|
|
20
21
|
"build": "node scripts/generate-hooks.mjs && tsup && npm run build:sentinel-assets && npm run build:university-assets",
|
|
21
22
|
"build:sentinel-assets": "rm -rf dist/sentinel-ui && cp -r ../sentinel/ui/dist dist/sentinel-ui",
|
|
22
23
|
"check:hooks": "node scripts/generate-hooks.mjs --check",
|
|
23
24
|
"build:lore-ui": "cd lore-ui && npx vite build",
|
|
25
|
+
"build:graph-ui": "cd graph-ui && npx vite build",
|
|
24
26
|
"build:university-assets": "rm -rf dist/university-ui dist/university-content && cp -r ../university/ui/dist dist/university-ui && cp -r ../university/src/content dist/university-content",
|
|
25
27
|
"dev": "tsup src/index.ts --format esm --dts --watch",
|
|
26
28
|
"test": "vitest run",
|