@brainpilot/web 0.0.1
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/assets/geist-cyrillic-ext-wght-normal-DjL33-gN.woff2 +0 -0
- package/dist/assets/geist-cyrillic-wght-normal-BEAKL7Jp.woff2 +0 -0
- package/dist/assets/geist-latin-ext-wght-normal-DC-KSUi6.woff2 +0 -0
- package/dist/assets/geist-latin-wght-normal-BgDaEnEv.woff2 +0 -0
- package/dist/assets/geist-mono-cyrillic-ext-wght-normal-I4S5GZfc.woff2 +0 -0
- package/dist/assets/geist-mono-cyrillic-wght-normal-BmXc_FBt.woff2 +0 -0
- package/dist/assets/geist-mono-latin-ext-wght-normal-DrnZ1wKl.woff2 +0 -0
- package/dist/assets/geist-mono-latin-wght-normal-B_7UjwxQ.woff2 +0 -0
- package/dist/assets/geist-mono-symbols2-wght-normal-GZpp1pK2.woff2 +0 -0
- package/dist/assets/geist-mono-vietnamese-wght-normal-D8KDMBhC.woff2 +0 -0
- package/dist/assets/geist-vietnamese-wght-normal-6IgcOCM7.woff2 +0 -0
- package/dist/assets/index-Cd0Mi_WU.css +1 -0
- package/dist/assets/index-FGg-DeYR.js +448 -0
- package/dist/index.html +14 -0
- package/package.json +41 -0
package/dist/index.html
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
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
|
+
<meta name="color-scheme" content="light dark" />
|
|
7
|
+
<title>BrainPilot</title>
|
|
8
|
+
<script type="module" crossorigin src="/assets/index-FGg-DeYR.js"></script>
|
|
9
|
+
<link rel="stylesheet" crossorigin href="/assets/index-Cd0Mi_WU.css">
|
|
10
|
+
</head>
|
|
11
|
+
<body>
|
|
12
|
+
<div id="root"></div>
|
|
13
|
+
</body>
|
|
14
|
+
</html>
|
package/package.json
ADDED
|
@@ -0,0 +1,41 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@brainpilot/web",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"license": "Apache-2.0",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"files": ["dist"],
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/NeuroAIHub/BrainPilot.git",
|
|
10
|
+
"directory": "packages/web"
|
|
11
|
+
},
|
|
12
|
+
"publishConfig": { "access": "public" },
|
|
13
|
+
"scripts": {
|
|
14
|
+
"build": "tsc -b && vite build",
|
|
15
|
+
"dev": "vite",
|
|
16
|
+
"preview": "vite preview",
|
|
17
|
+
"test": "vitest run --config vitest.config.ts"
|
|
18
|
+
},
|
|
19
|
+
"dependencies": {
|
|
20
|
+
"@brainpilot/protocol": "^0.0.1",
|
|
21
|
+
"@fontsource-variable/geist": "^5.2.9",
|
|
22
|
+
"@fontsource-variable/geist-mono": "^5.2.8",
|
|
23
|
+
"@vitejs/plugin-react": "^5.0.0",
|
|
24
|
+
"@xterm/addon-fit": "^0.11.0",
|
|
25
|
+
"@xterm/xterm": "^6.0.0",
|
|
26
|
+
"highlight.js": "^11.11.1",
|
|
27
|
+
"html-to-image": "^1.11.13",
|
|
28
|
+
"lucide-react": "^0.468.0",
|
|
29
|
+
"react": "^18.3.1",
|
|
30
|
+
"react-dom": "^18.3.1",
|
|
31
|
+
"react-markdown": "^10.1.0",
|
|
32
|
+
"rehype-highlight": "^7.0.2",
|
|
33
|
+
"remark-gfm": "^4.0.1",
|
|
34
|
+
"vite": "^6.0.0"
|
|
35
|
+
},
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@types/react": "^18.3.12",
|
|
38
|
+
"@types/react-dom": "^18.3.1",
|
|
39
|
+
"typescript": "^5.6.3"
|
|
40
|
+
}
|
|
41
|
+
}
|