-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1.06 KB
/
package.json
File metadata and controls
37 lines (37 loc) · 1.06 KB
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
{
"name": "solid-element-ui-monorepo",
"version": "0.0.0",
"private": true,
"devDependencies": {
"@changesets/cli": "^2.29.8",
"@types/node": "^25.2.2",
"solid-js": "^1.9.11",
"turbo": "^2.8.3",
"typescript": "~5.9.3",
"vite": "^7.3.1",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-solid": "^2.11.10"
},
"packageManager": "bun@1.3.5",
"scripts": {
"dev": "turbo dev",
"build": "turbo build",
"test:ui": "vitest",
"change": "bun changeset",
"version": "bun changeset version",
"status": "bun changeset status",
"gen": "node scripts/gen-component.ts",
"clean": "turbo run clean && rm -rf node_modules",
"lint": "turbo lint",
"release": "turbo build --filter=solid-element-ui && turbo lint && changeset publish"
},
"workspaces": [
"apps/*",
"packages/*"
],
"dependencies": {
"@tailwindcss/vite": "^4.1.18",
"lucide-solid": "^0.563.0",
"tailwindcss": "^4.1.18"
}
}