basuicn 0.1.0 → 0.1.3
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/README.md +96 -146
- package/README_CLI.md +26 -33
- package/dist/ui-cli.cjs +532 -0
- package/package.json +86 -86
- package/registry.json +168 -108
- package/scripts/build-registry.ts +8 -0
- package/scripts/generate-theme-css.ts +74 -0
- package/scripts/ui-cli.ts +760 -485
package/package.json
CHANGED
|
@@ -1,86 +1,86 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "basuicn",
|
|
3
|
-
"private": false,
|
|
4
|
-
"version": "0.1.
|
|
5
|
-
"type": "module",
|
|
6
|
-
"bin": {
|
|
7
|
-
"basuicn": "./dist/ui-cli.cjs"
|
|
8
|
-
},
|
|
9
|
-
"files": [
|
|
10
|
-
"dist",
|
|
11
|
-
"registry.json",
|
|
12
|
-
"scripts",
|
|
13
|
-
"README_CLI.md"
|
|
14
|
-
],
|
|
15
|
-
"scripts": {
|
|
16
|
-
"dev": "vite",
|
|
17
|
-
"build": "tsc -b && vite build",
|
|
18
|
-
"build:cli": "npx -y esbuild scripts/ui-cli.ts --bundle --platform=node --outfile=dist/ui-cli.cjs --format=cjs --packages=external",
|
|
19
|
-
"lint": "eslint .",
|
|
20
|
-
"preview": "vite preview",
|
|
21
|
-
"test": "vitest",
|
|
22
|
-
"test:ui": "vitest --ui",
|
|
23
|
-
"test:coverage": "vitest run --coverage",
|
|
24
|
-
"registry:build": "npx -y tsx scripts/build-registry.ts",
|
|
25
|
-
"
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
"@
|
|
30
|
-
"@
|
|
31
|
-
"@
|
|
32
|
-
"@
|
|
33
|
-
"@
|
|
34
|
-
"@
|
|
35
|
-
"@
|
|
36
|
-
"
|
|
37
|
-
"
|
|
38
|
-
"
|
|
39
|
-
"
|
|
40
|
-
"
|
|
41
|
-
"react
|
|
42
|
-
"
|
|
43
|
-
"
|
|
44
|
-
"
|
|
45
|
-
"
|
|
46
|
-
"react
|
|
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
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "basuicn",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.1.3",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"bin": {
|
|
7
|
+
"basuicn": "./dist/ui-cli.cjs"
|
|
8
|
+
},
|
|
9
|
+
"files": [
|
|
10
|
+
"dist",
|
|
11
|
+
"registry.json",
|
|
12
|
+
"scripts",
|
|
13
|
+
"README_CLI.md"
|
|
14
|
+
],
|
|
15
|
+
"scripts": {
|
|
16
|
+
"dev": "vite",
|
|
17
|
+
"build": "tsc -b && vite build",
|
|
18
|
+
"build:cli": "npx -y esbuild scripts/ui-cli.ts --bundle --platform=node --outfile=dist/ui-cli.cjs --format=cjs --packages=external",
|
|
19
|
+
"lint": "eslint .",
|
|
20
|
+
"preview": "vite preview",
|
|
21
|
+
"test": "vitest",
|
|
22
|
+
"test:ui": "vitest --ui",
|
|
23
|
+
"test:coverage": "vitest run --coverage",
|
|
24
|
+
"registry:build": "npx -y tsx scripts/build-registry.ts",
|
|
25
|
+
"theme:sync": "npx -y tsx scripts/generate-theme-css.ts",
|
|
26
|
+
"ui:add": "npx -y tsx scripts/ui-cli.ts add"
|
|
27
|
+
},
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@babel/core": "^7.29.0",
|
|
30
|
+
"@base-ui/react": "^1.3.0",
|
|
31
|
+
"@codesandbox/sandpack-react": "^2.20.0",
|
|
32
|
+
"@eslint/js": "^9.39.4",
|
|
33
|
+
"@fontsource-variable/geist": "^5.2.8",
|
|
34
|
+
"@hookform/resolvers": "^5.2.2",
|
|
35
|
+
"@monaco-editor/react": "^4.7.0",
|
|
36
|
+
"@rolldown/plugin-babel": "^0.2.1",
|
|
37
|
+
"@tailwindcss/vite": "^4.2.2",
|
|
38
|
+
"@tanstack/react-table": "^8.21.3",
|
|
39
|
+
"@tanstack/react-virtual": "^3.13.23",
|
|
40
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
41
|
+
"@testing-library/react": "^16.3.2",
|
|
42
|
+
"@testing-library/user-event": "^14.6.1",
|
|
43
|
+
"@types/babel__core": "^7.20.5",
|
|
44
|
+
"@types/hast": "^3.0.4",
|
|
45
|
+
"@types/node": "^24.12.0",
|
|
46
|
+
"@types/react": "^19.2.14",
|
|
47
|
+
"@types/react-dom": "^19.2.3",
|
|
48
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
49
|
+
"@vitest/ui": "^4.1.2",
|
|
50
|
+
"autoprefixer": "^10.4.27",
|
|
51
|
+
"babel-plugin-react-compiler": "^1.0.0",
|
|
52
|
+
"clsx": "^2.1.1",
|
|
53
|
+
"date-fns": "^4.1.0",
|
|
54
|
+
"dayjs": "^1.11.20",
|
|
55
|
+
"eslint": "^9.39.4",
|
|
56
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
57
|
+
"eslint-plugin-react-refresh": "^0.5.2",
|
|
58
|
+
"globals": "^17.4.0",
|
|
59
|
+
"jsdom": "^29.0.1",
|
|
60
|
+
"lucide-react": "^0.577.0",
|
|
61
|
+
"postcss": "^8.5.8",
|
|
62
|
+
"react": "^19.2.4",
|
|
63
|
+
"react-day-picker": "^9.14.0",
|
|
64
|
+
"react-dom": "^19.2.4",
|
|
65
|
+
"react-hook-form": "^7.72.0",
|
|
66
|
+
"react-live": "^4.1.8",
|
|
67
|
+
"react-resizable-panels": "^4.8.0",
|
|
68
|
+
"react-router-dom": "^7.13.2",
|
|
69
|
+
"rehype-parse": "^9.0.1",
|
|
70
|
+
"rehype-pretty-code": "^0.14.3",
|
|
71
|
+
"rehype-react": "^8.0.0",
|
|
72
|
+
"shiki": "^4.0.2",
|
|
73
|
+
"sonner": "^2.0.7",
|
|
74
|
+
"tailwind-merge": "^3.5.0",
|
|
75
|
+
"tailwind-variants": "^3.2.2",
|
|
76
|
+
"tailwindcss": "^4.2.2",
|
|
77
|
+
"tailwindcss-animate": "^1.0.7",
|
|
78
|
+
"tw-animate-css": "^1.4.0",
|
|
79
|
+
"typescript": "~5.9.3",
|
|
80
|
+
"typescript-eslint": "^8.57.0",
|
|
81
|
+
"unified": "^11.0.5",
|
|
82
|
+
"vite": "^8.0.1",
|
|
83
|
+
"vitest": "^4.1.2",
|
|
84
|
+
"zod": "^4.3.6"
|
|
85
|
+
}
|
|
86
|
+
}
|