generated from stabledata/surface
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
93 lines (93 loc) · 2.97 KB
/
package.json
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@stabledata/switch",
"version": "0.0.22",
"type": "module",
"main": "switch/dist/esm/index.js",
"module": "switch/dist/esm/index.js",
"types": "switch/dist/types/index.d.ts",
"sideEffects": [
"*.css"
],
"files": [
"switch",
"index.ts",
"types.ts",
"package.json",
"README.md"
],
"exports": {
".": {
"import": "./switch/dist/esm/index.js",
"types": "./switch/dist/types/index.d.ts"
},
"./switch.css": "./switch/dist/switch.css"
},
"scripts": {
"dev": "vite",
"build": "tsr generate && tsc && vite build && cp -r views/assets/* build/assets/",
"build:css": "npx tailwindcss -i ./views/index.css -o ./switch/dist/switch.css --minify",
"build:lib": "tsc --project tsconfig.lib.json && bun run build:css",
"build:node": "npm run build && rollup -c rollup.config.mjs",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"start:node": "cross-env NODE_ENV=production DEBUG=surface:* node dist/surface.server.node.js"
},
"dependencies": {
"@hono/node-server": "^1.9.1",
"@radix-ui/react-alert-dialog": "^1.0.5",
"@radix-ui/react-checkbox": "^1.0.4",
"@radix-ui/react-label": "^2.0.2",
"@radix-ui/react-radio-group": "^1.1.3",
"@radix-ui/react-select": "^2.0.0",
"@radix-ui/react-slot": "^1.0.2",
"@radix-ui/react-switch": "^1.0.3",
"@radix-ui/react-toast": "^1.1.5",
"@radix-ui/react-tooltip": "^1.0.7",
"@tanstack/react-router": "^1.28.5",
"@tanstack/react-router-server": "^1.28.5",
"bunyan": "^1.8.15",
"class-variance-authority": "^0.7.0",
"clsx": "^2.1.1",
"cross-env": "^7.0.3",
"debug": "^4.3.4",
"dotenv": "^16.4.5",
"hono": "^4.2.2",
"install": "^0.13.0",
"lucide-react": "^0.378.0",
"pino": "^9.0.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hook-form": "^7.51.4",
"tailwind-merge": "^2.3.0",
"tailwindcss-animate": "^1.0.7",
"vite-tsconfig-paths": "^4.3.2",
"zustand": "^4.5.2"
},
"devDependencies": {
"@hono/vite-dev-server": "^0.10.0",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-image": "^3.0.3",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.6",
"@tanstack/router-cli": "^1.28.2",
"@tanstack/router-vite-plugin": "^1.26.10",
"@types/bun": "^1.0.12",
"@types/debug": "^4.1.12",
"@types/react": "^18.2.66",
"@types/react-dom": "^18.2.22",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.19",
"eslint": "^8.57.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.6",
"eslint-plugin-require-extensions": "^0.1.3",
"glob": "^10.3.12",
"postcss": "^8.4.38",
"rollup": "^4.14.1",
"rollup-plugin-ignore-import": "^1.3.2",
"tailwindcss": "^3.4.3",
"typescript": "^5.2.2",
"vite": "^5.2.0"
}
}