-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 3.17 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 3.17 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
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
94
95
96
{
"name": "@adaptive-sm/solid-ui",
"version": "0.11.0",
"scripts": {
"dev": "bun run rsbuild:dev",
"build": "bun run build:lib",
"build:site": "bun run vite:build",
"build:lib": "clear ; rm -rf ./dist ; vite build --config vite.config.lib.ts",
"ts:build": "rm -rf ./export ; tsc -p ./tsconfig.lib.json",
"compile": "bun run tsc",
"vite:dev": "nice -5 vite dev --debug hmr",
"vite:build": "nice -15 vite build",
"vite:deploy": "bun run vite:build && bun run solid:upload && bun run tag:deployed",
"rsbuild:dev": "nice -5 rsbuild dev",
"rsbuild:build": "nice -15 rsbuild build",
"rsbuild:deploy": "bun run rsbuild:build && bun run solid:upload && bun run tag:deployed",
"deploy": "bash ./ops/deploy.bash",
"upload": "bun run wrangler pages deploy ./out --project-name=adaptive-solid-ui --commit-dirty",
"tag:deployed": "git branch -f deployed",
"release": "bash ./ops/release.sh",
"generateDemoList": "bun run ./src/app/demos/generateDemoList.cli.ts",
"generateRulesUiLib": "bash ./lib/generate_ai_rules/generate_agent_rules_1_lib.bash",
"update": "nice -15 bun x npm-check-updates -u && bun i",
"update:commit": "bun x npm-check-updates -u && bun i && git add package.json && bun run tsc && git commit -m \"chore(deps): update dependencies\" && git push",
"clean": "rm -rf ./dist",
"reset": "rm -rf ./node_modules"
},
"dependencies": {
"@adaptive-sm/utils": "^0.4.2",
"@corvu/dialog": "^0.2.4",
"@corvu/popover": "^0.2.0",
"@mdi/js": "^7.4.47",
"@solid-primitives/keyed": "^1.5.2",
"@solid-primitives/scheduled": "^1.5.2"
},
"peerDependencies": {
"solid-js": "^1.9.10",
"@solidjs/router": "^0.15.3",
"tailwind-merge": "^3.3.1",
"clsx": "^2.1.1",
"valibot": "^1.1.0",
"dayjs": "^1.11.19"
},
"devDependencies": {
"@biomejs/biome": "^2.3.2",
"@rsbuild/core": "^1.6.0",
"@rsbuild/plugin-node-polyfill": "^1.4.2",
"@rsbuild/plugin-solid": "^1.0.6",
"@tailwindcss/postcss": "^4.1.16",
"@tailwindcss/vite": "^4.1.16",
"@types/bun": "latest",
"glob": "^11.0.3",
"image-size": "^2.0.2",
"prettier": "^3.6.2",
"rollup-plugin-visualizer": "^6.0.5",
"tailwindcss": "^4.1.16",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vite-plugin-dts": "^4.5.4",
"vite-plugin-solid": "^2.11.10",
"wrangler": "^4.45.3"
},
"prettier": {
"semi": false,
"printWidth": 120,
"trailingComma": "all"
},
"type": "module",
"private": false,
"license": "MIT",
"homepage": "https://github.com/adaptive-shield-matrix/solid-ui",
"description": "A library of reusable UI components for Solid.js projects. Built with TypeScript, Tailwind CSS, and Solid.js. Components are designed to be accessible, customizable, and easy to integrate.",
"keywords": [
"solid",
"solidjs",
"tailwind",
"tailwindcss",
"components",
"ui-components",
"web-development",
"frontend",
"typescript"
],
"repository": {
"url": "git+https://github.com/adaptive-shield-matrix/solid-ui.git"
},
"exports": {
"./*": {
"import": "./dist/*.js",
"types": "./dist/*.d.ts"
}
},
"files": [
"dist"
]
}