cyberui-2045 2.1.1 → 2.3.0
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/AGENT.md +4 -2
- package/bin/usage-content.js +210 -120
- package/dist/components/Carousel.d.ts +3 -3
- package/dist/components/CircularProgress.d.ts +20 -7
- package/dist/components/Image.d.ts +5 -1
- package/dist/components/LinearProgress.d.ts +9 -5
- package/dist/components/Modal.d.ts +23 -1
- package/dist/components/SegmentedProgress.d.ts +37 -29
- package/dist/components/Select.d.ts +5 -0
- package/dist/components/Steps.d.ts +2 -1
- package/dist/components/index.d.ts +2 -0
- package/dist/cyberui-2045.css +1 -1
- package/dist/hooks/useAnimatedProgress.d.ts +1 -2
- package/dist/index.d.ts +13 -3
- package/dist/index.es.js +1131 -1082
- package/dist/index.js +22 -17
- package/package.json +125 -125
package/package.json
CHANGED
|
@@ -1,125 +1,125 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "cyberui-2045",
|
|
3
|
-
"version": "2.
|
|
4
|
-
"description": "The AI-first cyberpunk React UI library — built-in coding assistant context for Claude, Cursor, and Copilot out of the box.",
|
|
5
|
-
"private": false,
|
|
6
|
-
"type": "module",
|
|
7
|
-
"main": "dist/index.js",
|
|
8
|
-
"module": "dist/index.es.js",
|
|
9
|
-
"types": "dist/index.d.ts",
|
|
10
|
-
"bin": {
|
|
11
|
-
"cyberui-2045": "bin/init.js"
|
|
12
|
-
},
|
|
13
|
-
"files": [
|
|
14
|
-
"dist/assets",
|
|
15
|
-
"dist/components",
|
|
16
|
-
"dist/hooks",
|
|
17
|
-
"dist/contexts",
|
|
18
|
-
"dist/utils",
|
|
19
|
-
"dist/index.d.ts",
|
|
20
|
-
"dist/index.js",
|
|
21
|
-
"dist/index.es.js",
|
|
22
|
-
"dist/cyberui-2045.css",
|
|
23
|
-
"bin/",
|
|
24
|
-
"README.md",
|
|
25
|
-
"AGENT.md"
|
|
26
|
-
],
|
|
27
|
-
"sideEffects": [
|
|
28
|
-
"dist/*.css",
|
|
29
|
-
"*.css"
|
|
30
|
-
],
|
|
31
|
-
"exports": {
|
|
32
|
-
".": {
|
|
33
|
-
"types": "./dist/index.d.ts",
|
|
34
|
-
"import": "./dist/index.es.js",
|
|
35
|
-
"require": "./dist/index.js"
|
|
36
|
-
},
|
|
37
|
-
"./styles.css": "./dist/cyberui-2045.css"
|
|
38
|
-
},
|
|
39
|
-
"keywords": [
|
|
40
|
-
"react",
|
|
41
|
-
"ui",
|
|
42
|
-
"components",
|
|
43
|
-
"cyberpunk",
|
|
44
|
-
"CyberUI",
|
|
45
|
-
"neon",
|
|
46
|
-
"futuristic",
|
|
47
|
-
"typescript",
|
|
48
|
-
"tailwind",
|
|
49
|
-
"ai-friendly",
|
|
50
|
-
"claude",
|
|
51
|
-
"cursor",
|
|
52
|
-
"copilot",
|
|
53
|
-
"design-system",
|
|
54
|
-
"component-library"
|
|
55
|
-
],
|
|
56
|
-
"author": "Patrick Yang <azureroki@gmail.com>",
|
|
57
|
-
"license": "MIT",
|
|
58
|
-
"repository": {
|
|
59
|
-
"type": "git",
|
|
60
|
-
"url": "git+https://github.com/patrickkuei/CyberUI.git"
|
|
61
|
-
},
|
|
62
|
-
"bugs": {
|
|
63
|
-
"url": "https://github.com/patrickkuei/CyberUI/issues"
|
|
64
|
-
},
|
|
65
|
-
"homepage": "https://patrickkuei.github.io/CyberUI",
|
|
66
|
-
"scripts": {
|
|
67
|
-
"postinstall": "node -e \"!process.env.CI && console.log('\\n cyberui-2045 installed\\n\\n AI coding setup \\u2192 npx cyberui-2045 init\\n Docs \\u2192 https://patrickkuei.github.io/CyberUI\\n')\"",
|
|
68
|
-
"dev": "vite",
|
|
69
|
-
"build": "vite build --mode library",
|
|
70
|
-
"build:demo": "vite build",
|
|
71
|
-
"lint": "eslint .",
|
|
72
|
-
"preview": "vite preview",
|
|
73
|
-
"test": "vitest run",
|
|
74
|
-
"type-check": "tsc --noEmit",
|
|
75
|
-
"storybook": "storybook dev -p 6006",
|
|
76
|
-
"build-storybook": "storybook build",
|
|
77
|
-
"predeploy": "npm run build:demo",
|
|
78
|
-
"deploy": "gh-pages -d dist",
|
|
79
|
-
"prepublishOnly": "npm run build"
|
|
80
|
-
},
|
|
81
|
-
"peerDependencies": {
|
|
82
|
-
"react": "^18.0.0 || ^19.0.0",
|
|
83
|
-
"react-dom": "^18.0.0 || ^19.0.0"
|
|
84
|
-
},
|
|
85
|
-
"devDependencies": {
|
|
86
|
-
"@chromatic-com/storybook": "^4.1.0",
|
|
87
|
-
"@eslint/js": "^9.30.1",
|
|
88
|
-
"@storybook/addon-a11y": "^9.1.0",
|
|
89
|
-
"@storybook/addon-docs": "^9.1.0",
|
|
90
|
-
"@storybook/addon-onboarding": "^9.1.0",
|
|
91
|
-
"@storybook/addon-vitest": "^9.1.0",
|
|
92
|
-
"@storybook/react-vite": "^9.1.0",
|
|
93
|
-
"@tailwindcss/vite": "^4.1.11",
|
|
94
|
-
"@testing-library/dom": "^10.4.1",
|
|
95
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
96
|
-
"@testing-library/react": "^16.3.2",
|
|
97
|
-
"@types/node": "^24.1.0",
|
|
98
|
-
"@types/react": "^19.1.8",
|
|
99
|
-
"@types/react-dom": "^19.1.6",
|
|
100
|
-
"@vitejs/plugin-react": "^4.6.0",
|
|
101
|
-
"@vitest/browser": "^3.2.4",
|
|
102
|
-
"@vitest/coverage-v8": "^3.2.4",
|
|
103
|
-
"autoprefixer": "^10.4.21",
|
|
104
|
-
"eslint": "^9.30.1",
|
|
105
|
-
"eslint-plugin-react-hooks": "^5.2.0",
|
|
106
|
-
"eslint-plugin-react-refresh": "^0.4.20",
|
|
107
|
-
"eslint-plugin-storybook": "^9.1.0",
|
|
108
|
-
"gh-pages": "^6.3.0",
|
|
109
|
-
"globals": "^16.3.0",
|
|
110
|
-
"jsdom": "^29.0.1",
|
|
111
|
-
"playwright": "^1.54.2",
|
|
112
|
-
"postcss": "^8.5.6",
|
|
113
|
-
"storybook": "^9.1.0",
|
|
114
|
-
"tailwindcss": "^4.1.11",
|
|
115
|
-
"typescript": "~5.8.3",
|
|
116
|
-
"typescript-eslint": "^8.35.1",
|
|
117
|
-
"vite": "^7.0.4",
|
|
118
|
-
"vite-plugin-dts": "^4.5.4",
|
|
119
|
-
"vitest": "^3.2.4"
|
|
120
|
-
},
|
|
121
|
-
"dependencies": {
|
|
122
|
-
"clsx": "^2.1.1",
|
|
123
|
-
"tailwind-merge": "^3.5.0"
|
|
124
|
-
}
|
|
125
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "cyberui-2045",
|
|
3
|
+
"version": "2.3.0",
|
|
4
|
+
"description": "The AI-first cyberpunk React UI library — built-in coding assistant context for Claude, Cursor, and Copilot out of the box.",
|
|
5
|
+
"private": false,
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"module": "dist/index.es.js",
|
|
9
|
+
"types": "dist/index.d.ts",
|
|
10
|
+
"bin": {
|
|
11
|
+
"cyberui-2045": "bin/init.js"
|
|
12
|
+
},
|
|
13
|
+
"files": [
|
|
14
|
+
"dist/assets",
|
|
15
|
+
"dist/components",
|
|
16
|
+
"dist/hooks",
|
|
17
|
+
"dist/contexts",
|
|
18
|
+
"dist/utils",
|
|
19
|
+
"dist/index.d.ts",
|
|
20
|
+
"dist/index.js",
|
|
21
|
+
"dist/index.es.js",
|
|
22
|
+
"dist/cyberui-2045.css",
|
|
23
|
+
"bin/",
|
|
24
|
+
"README.md",
|
|
25
|
+
"AGENT.md"
|
|
26
|
+
],
|
|
27
|
+
"sideEffects": [
|
|
28
|
+
"dist/*.css",
|
|
29
|
+
"*.css"
|
|
30
|
+
],
|
|
31
|
+
"exports": {
|
|
32
|
+
".": {
|
|
33
|
+
"types": "./dist/index.d.ts",
|
|
34
|
+
"import": "./dist/index.es.js",
|
|
35
|
+
"require": "./dist/index.js"
|
|
36
|
+
},
|
|
37
|
+
"./styles.css": "./dist/cyberui-2045.css"
|
|
38
|
+
},
|
|
39
|
+
"keywords": [
|
|
40
|
+
"react",
|
|
41
|
+
"ui",
|
|
42
|
+
"components",
|
|
43
|
+
"cyberpunk",
|
|
44
|
+
"CyberUI",
|
|
45
|
+
"neon",
|
|
46
|
+
"futuristic",
|
|
47
|
+
"typescript",
|
|
48
|
+
"tailwind",
|
|
49
|
+
"ai-friendly",
|
|
50
|
+
"claude",
|
|
51
|
+
"cursor",
|
|
52
|
+
"copilot",
|
|
53
|
+
"design-system",
|
|
54
|
+
"component-library"
|
|
55
|
+
],
|
|
56
|
+
"author": "Patrick Yang <azureroki@gmail.com>",
|
|
57
|
+
"license": "MIT",
|
|
58
|
+
"repository": {
|
|
59
|
+
"type": "git",
|
|
60
|
+
"url": "git+https://github.com/patrickkuei/CyberUI.git"
|
|
61
|
+
},
|
|
62
|
+
"bugs": {
|
|
63
|
+
"url": "https://github.com/patrickkuei/CyberUI/issues"
|
|
64
|
+
},
|
|
65
|
+
"homepage": "https://patrickkuei.github.io/CyberUI",
|
|
66
|
+
"scripts": {
|
|
67
|
+
"postinstall": "node -e \"!process.env.CI && console.log('\\n cyberui-2045 installed\\n\\n AI coding setup \\u2192 npx cyberui-2045 init\\n Docs \\u2192 https://patrickkuei.github.io/CyberUI\\n')\"",
|
|
68
|
+
"dev": "vite",
|
|
69
|
+
"build": "vite build --mode library",
|
|
70
|
+
"build:demo": "vite build",
|
|
71
|
+
"lint": "eslint .",
|
|
72
|
+
"preview": "vite preview",
|
|
73
|
+
"test": "vitest run",
|
|
74
|
+
"type-check": "tsc --noEmit",
|
|
75
|
+
"storybook": "storybook dev -p 6006",
|
|
76
|
+
"build-storybook": "storybook build",
|
|
77
|
+
"predeploy": "npm run build:demo",
|
|
78
|
+
"deploy": "gh-pages -d dist",
|
|
79
|
+
"prepublishOnly": "npm run build"
|
|
80
|
+
},
|
|
81
|
+
"peerDependencies": {
|
|
82
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
83
|
+
"react-dom": "^18.0.0 || ^19.0.0"
|
|
84
|
+
},
|
|
85
|
+
"devDependencies": {
|
|
86
|
+
"@chromatic-com/storybook": "^4.1.0",
|
|
87
|
+
"@eslint/js": "^9.30.1",
|
|
88
|
+
"@storybook/addon-a11y": "^9.1.0",
|
|
89
|
+
"@storybook/addon-docs": "^9.1.0",
|
|
90
|
+
"@storybook/addon-onboarding": "^9.1.0",
|
|
91
|
+
"@storybook/addon-vitest": "^9.1.0",
|
|
92
|
+
"@storybook/react-vite": "^9.1.0",
|
|
93
|
+
"@tailwindcss/vite": "^4.1.11",
|
|
94
|
+
"@testing-library/dom": "^10.4.1",
|
|
95
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
96
|
+
"@testing-library/react": "^16.3.2",
|
|
97
|
+
"@types/node": "^24.1.0",
|
|
98
|
+
"@types/react": "^19.1.8",
|
|
99
|
+
"@types/react-dom": "^19.1.6",
|
|
100
|
+
"@vitejs/plugin-react": "^4.6.0",
|
|
101
|
+
"@vitest/browser": "^3.2.4",
|
|
102
|
+
"@vitest/coverage-v8": "^3.2.4",
|
|
103
|
+
"autoprefixer": "^10.4.21",
|
|
104
|
+
"eslint": "^9.30.1",
|
|
105
|
+
"eslint-plugin-react-hooks": "^5.2.0",
|
|
106
|
+
"eslint-plugin-react-refresh": "^0.4.20",
|
|
107
|
+
"eslint-plugin-storybook": "^9.1.0",
|
|
108
|
+
"gh-pages": "^6.3.0",
|
|
109
|
+
"globals": "^16.3.0",
|
|
110
|
+
"jsdom": "^29.0.1",
|
|
111
|
+
"playwright": "^1.54.2",
|
|
112
|
+
"postcss": "^8.5.6",
|
|
113
|
+
"storybook": "^9.1.0",
|
|
114
|
+
"tailwindcss": "^4.1.11",
|
|
115
|
+
"typescript": "~5.8.3",
|
|
116
|
+
"typescript-eslint": "^8.35.1",
|
|
117
|
+
"vite": "^7.0.4",
|
|
118
|
+
"vite-plugin-dts": "^4.5.4",
|
|
119
|
+
"vitest": "^3.2.4"
|
|
120
|
+
},
|
|
121
|
+
"dependencies": {
|
|
122
|
+
"clsx": "^2.1.1",
|
|
123
|
+
"tailwind-merge": "^3.5.0"
|
|
124
|
+
}
|
|
125
|
+
}
|