basuicn 0.1.5 → 0.1.7
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 -96
- package/README_CLI.md +44 -44
- package/dist/ui-cli.cjs +464 -146
- package/package.json +102 -102
- package/registry.json +78 -17
- package/scripts/build-cli.mjs +13 -0
- package/scripts/generate-theme-css.ts +74 -74
- package/scripts/ui-cli.ts +966 -966
- package/dist/assets/index-1YAQdTE0.css +0 -2
- package/dist/assets/index-BsQ6nn74.js +0 -237
- package/dist/favicon.svg +0 -1
- package/dist/icons.svg +0 -24
- package/dist/index.html +0 -13
- package/dist/ui-cli.js +0 -124
package/package.json
CHANGED
|
@@ -1,102 +1,102 @@
|
|
|
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": "
|
|
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
|
-
"storybook": "storybook dev -p 6006",
|
|
28
|
-
"build-storybook": "storybook build"
|
|
29
|
-
},
|
|
30
|
-
"devDependencies": {
|
|
31
|
-
"@babel/core": "^7.29.0",
|
|
32
|
-
"@base-ui/react": "^1.3.0",
|
|
33
|
-
"@codesandbox/sandpack-react": "^2.20.0",
|
|
34
|
-
"@eslint/js": "^9.39.4",
|
|
35
|
-
"@fontsource-variable/geist": "^5.2.8",
|
|
36
|
-
"@hookform/resolvers": "^5.2.2",
|
|
37
|
-
"@monaco-editor/react": "^4.7.0",
|
|
38
|
-
"@rolldown/plugin-babel": "^0.2.1",
|
|
39
|
-
"@tailwindcss/vite": "^4.2.2",
|
|
40
|
-
"@tanstack/react-table": "^8.21.3",
|
|
41
|
-
"@tanstack/react-virtual": "^3.13.23",
|
|
42
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
43
|
-
"@testing-library/react": "^16.3.2",
|
|
44
|
-
"@testing-library/user-event": "^14.6.1",
|
|
45
|
-
"@types/babel__core": "^7.20.5",
|
|
46
|
-
"@types/hast": "^3.0.4",
|
|
47
|
-
"@types/node": "^24.12.0",
|
|
48
|
-
"@types/react": "^19.2.14",
|
|
49
|
-
"@types/react-dom": "^19.2.3",
|
|
50
|
-
"@vitejs/plugin-react": "^6.0.1",
|
|
51
|
-
"@vitest/ui": "^4.1.2",
|
|
52
|
-
"autoprefixer": "^10.4.27",
|
|
53
|
-
"babel-plugin-react-compiler": "^1.0.0",
|
|
54
|
-
"clsx": "^2.1.1",
|
|
55
|
-
"date-fns": "^4.1.0",
|
|
56
|
-
"dayjs": "^1.11.20",
|
|
57
|
-
"eslint": "^9.39.4",
|
|
58
|
-
"eslint-plugin-react-hooks": "^7.0.1",
|
|
59
|
-
"eslint-plugin-react-refresh": "^0.5.2",
|
|
60
|
-
"globals": "^17.4.0",
|
|
61
|
-
"jsdom": "^29.0.1",
|
|
62
|
-
"lucide-react": "^0.577.0",
|
|
63
|
-
"postcss": "^8.5.8",
|
|
64
|
-
"react": "^19.2.4",
|
|
65
|
-
"react-day-picker": "^9.14.0",
|
|
66
|
-
"react-dom": "^19.2.4",
|
|
67
|
-
"react-hook-form": "^7.72.0",
|
|
68
|
-
"react-live": "^4.1.8",
|
|
69
|
-
"react-resizable-panels": "^4.8.0",
|
|
70
|
-
"react-router-dom": "^7.13.2",
|
|
71
|
-
"rehype-parse": "^9.0.1",
|
|
72
|
-
"rehype-pretty-code": "^0.14.3",
|
|
73
|
-
"rehype-react": "^8.0.0",
|
|
74
|
-
"shiki": "^4.0.2",
|
|
75
|
-
"sonner": "^2.0.7",
|
|
76
|
-
"tailwind-merge": "^3.5.0",
|
|
77
|
-
"tailwind-variants": "^3.2.2",
|
|
78
|
-
"tailwindcss": "^4.2.2",
|
|
79
|
-
"tailwindcss-animate": "^1.0.7",
|
|
80
|
-
"tw-animate-css": "^1.4.0",
|
|
81
|
-
"typescript": "~5.9.3",
|
|
82
|
-
"typescript-eslint": "^8.57.0",
|
|
83
|
-
"unified": "^11.0.5",
|
|
84
|
-
"vite": "^8.0.1",
|
|
85
|
-
"vitest": "^4.1.2",
|
|
86
|
-
"zod": "^4.3.6",
|
|
87
|
-
"storybook": "^10.3.4",
|
|
88
|
-
"@storybook/react-vite": "^10.3.4",
|
|
89
|
-
"@chromatic-com/storybook": "^5.1.1",
|
|
90
|
-
"@storybook/addon-vitest": "^10.3.4",
|
|
91
|
-
"@storybook/addon-a11y": "^10.3.4",
|
|
92
|
-
"@storybook/addon-docs": "^10.3.4",
|
|
93
|
-
"@storybook/addon-onboarding": "^10.3.4",
|
|
94
|
-
"eslint-plugin-storybook": "^10.3.4",
|
|
95
|
-
"playwright": "^1.59.1",
|
|
96
|
-
"@vitest/browser-playwright": "^4.1.2",
|
|
97
|
-
"@vitest/coverage-v8": "^4.1.2"
|
|
98
|
-
},
|
|
99
|
-
"dependencies": {
|
|
100
|
-
"keen-slider": "^6.8.6"
|
|
101
|
-
}
|
|
102
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "basuicn",
|
|
3
|
+
"private": false,
|
|
4
|
+
"version": "0.1.7",
|
|
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": "node scripts/build-cli.mjs",
|
|
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
|
+
"storybook": "storybook dev -p 6006",
|
|
28
|
+
"build-storybook": "storybook build"
|
|
29
|
+
},
|
|
30
|
+
"devDependencies": {
|
|
31
|
+
"@babel/core": "^7.29.0",
|
|
32
|
+
"@base-ui/react": "^1.3.0",
|
|
33
|
+
"@codesandbox/sandpack-react": "^2.20.0",
|
|
34
|
+
"@eslint/js": "^9.39.4",
|
|
35
|
+
"@fontsource-variable/geist": "^5.2.8",
|
|
36
|
+
"@hookform/resolvers": "^5.2.2",
|
|
37
|
+
"@monaco-editor/react": "^4.7.0",
|
|
38
|
+
"@rolldown/plugin-babel": "^0.2.1",
|
|
39
|
+
"@tailwindcss/vite": "^4.2.2",
|
|
40
|
+
"@tanstack/react-table": "^8.21.3",
|
|
41
|
+
"@tanstack/react-virtual": "^3.13.23",
|
|
42
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
43
|
+
"@testing-library/react": "^16.3.2",
|
|
44
|
+
"@testing-library/user-event": "^14.6.1",
|
|
45
|
+
"@types/babel__core": "^7.20.5",
|
|
46
|
+
"@types/hast": "^3.0.4",
|
|
47
|
+
"@types/node": "^24.12.0",
|
|
48
|
+
"@types/react": "^19.2.14",
|
|
49
|
+
"@types/react-dom": "^19.2.3",
|
|
50
|
+
"@vitejs/plugin-react": "^6.0.1",
|
|
51
|
+
"@vitest/ui": "^4.1.2",
|
|
52
|
+
"autoprefixer": "^10.4.27",
|
|
53
|
+
"babel-plugin-react-compiler": "^1.0.0",
|
|
54
|
+
"clsx": "^2.1.1",
|
|
55
|
+
"date-fns": "^4.1.0",
|
|
56
|
+
"dayjs": "^1.11.20",
|
|
57
|
+
"eslint": "^9.39.4",
|
|
58
|
+
"eslint-plugin-react-hooks": "^7.0.1",
|
|
59
|
+
"eslint-plugin-react-refresh": "^0.5.2",
|
|
60
|
+
"globals": "^17.4.0",
|
|
61
|
+
"jsdom": "^29.0.1",
|
|
62
|
+
"lucide-react": "^0.577.0",
|
|
63
|
+
"postcss": "^8.5.8",
|
|
64
|
+
"react": "^19.2.4",
|
|
65
|
+
"react-day-picker": "^9.14.0",
|
|
66
|
+
"react-dom": "^19.2.4",
|
|
67
|
+
"react-hook-form": "^7.72.0",
|
|
68
|
+
"react-live": "^4.1.8",
|
|
69
|
+
"react-resizable-panels": "^4.8.0",
|
|
70
|
+
"react-router-dom": "^7.13.2",
|
|
71
|
+
"rehype-parse": "^9.0.1",
|
|
72
|
+
"rehype-pretty-code": "^0.14.3",
|
|
73
|
+
"rehype-react": "^8.0.0",
|
|
74
|
+
"shiki": "^4.0.2",
|
|
75
|
+
"sonner": "^2.0.7",
|
|
76
|
+
"tailwind-merge": "^3.5.0",
|
|
77
|
+
"tailwind-variants": "^3.2.2",
|
|
78
|
+
"tailwindcss": "^4.2.2",
|
|
79
|
+
"tailwindcss-animate": "^1.0.7",
|
|
80
|
+
"tw-animate-css": "^1.4.0",
|
|
81
|
+
"typescript": "~5.9.3",
|
|
82
|
+
"typescript-eslint": "^8.57.0",
|
|
83
|
+
"unified": "^11.0.5",
|
|
84
|
+
"vite": "^8.0.1",
|
|
85
|
+
"vitest": "^4.1.2",
|
|
86
|
+
"zod": "^4.3.6",
|
|
87
|
+
"storybook": "^10.3.4",
|
|
88
|
+
"@storybook/react-vite": "^10.3.4",
|
|
89
|
+
"@chromatic-com/storybook": "^5.1.1",
|
|
90
|
+
"@storybook/addon-vitest": "^10.3.4",
|
|
91
|
+
"@storybook/addon-a11y": "^10.3.4",
|
|
92
|
+
"@storybook/addon-docs": "^10.3.4",
|
|
93
|
+
"@storybook/addon-onboarding": "^10.3.4",
|
|
94
|
+
"eslint-plugin-storybook": "^10.3.4",
|
|
95
|
+
"playwright": "^1.59.1",
|
|
96
|
+
"@vitest/browser-playwright": "^4.1.2",
|
|
97
|
+
"@vitest/coverage-v8": "^4.1.2"
|
|
98
|
+
},
|
|
99
|
+
"dependencies": {
|
|
100
|
+
"keen-slider": "^6.8.6"
|
|
101
|
+
}
|
|
102
|
+
}
|