@axiom-lattice/sandbox-console 0.0.23

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.
@@ -0,0 +1,15 @@
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
+ <meta name="theme-color" content="#ffffff" />
7
+ <meta name="description" content="Axiom Lattice Sandbox Console" />
8
+ <title>Sandbox Console</title>
9
+ <script type="module" crossorigin src="/assets/index-Pp3fBLNm.js"></script>
10
+ <link rel="stylesheet" crossorigin href="/assets/index-ByY6Q3Go.css">
11
+ </head>
12
+ <body>
13
+ <div id="root"></div>
14
+ </body>
15
+ </html>
package/package.json ADDED
@@ -0,0 +1,54 @@
1
+ {
2
+ "name": "@axiom-lattice/sandbox-console",
3
+ "version": "0.0.23",
4
+ "private": false,
5
+ "type": "module",
6
+ "bin": {
7
+ "sandbox-console": "./bin/server.mjs"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "bin"
12
+ ],
13
+ "dependencies": {
14
+ "@radix-ui/react-checkbox": "^1.3.5",
15
+ "@radix-ui/react-dialog": "^1.1.15",
16
+ "@radix-ui/react-label": "^2.1.8",
17
+ "@radix-ui/react-slot": "^1.2.4",
18
+ "@radix-ui/react-tabs": "^1.1.13",
19
+ "@refinedev/core": "^5.0.0",
20
+ "@refinedev/react-router": "^2.0.0",
21
+ "@tanstack/react-query": "^5.59.20",
22
+ "class-variance-authority": "^0.7.1",
23
+ "clsx": "^2.1.1",
24
+ "lucide-react": "^0.563.0",
25
+ "react": "^18.3.1",
26
+ "react-dom": "^18.3.1",
27
+ "react-router": "^7.0.2",
28
+ "tailwind-merge": "^3.5.0"
29
+ },
30
+ "devDependencies": {
31
+ "@testing-library/jest-dom": "^6.9.1",
32
+ "@testing-library/react": "^16.3.2",
33
+ "@testing-library/user-event": "^14.6.1",
34
+ "@types/node": "^20.19.13",
35
+ "@types/react": "^18.3.5",
36
+ "@types/react-dom": "^18.3.0",
37
+ "@vitejs/plugin-react": "^4.4.1",
38
+ "autoprefixer": "^10.5.0",
39
+ "jsdom": "^26.1.0",
40
+ "postcss": "^8.5.12",
41
+ "tailwindcss": "^3.4.19",
42
+ "tailwindcss-animate": "^1.0.7",
43
+ "typescript": "^5.8.3",
44
+ "vite": "^6.3.5",
45
+ "vitest": "^3.2.4"
46
+ },
47
+ "scripts": {
48
+ "dev": "lsof -ti:4010 | xargs kill -9 && vite --host 0.0.0.0 --port 4010",
49
+ "test": "vitest run",
50
+ "lint": "eslint src --ext .ts,.tsx",
51
+ "build": "tsc --noEmit && vite build",
52
+ "preview": "vite preview --host 0.0.0.0 --port 4010"
53
+ }
54
+ }