pxengine 0.1.156 → 0.1.158
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 +136 -136
- package/config/tailwind-preset.js +159 -159
- package/dist/index.cjs +2158 -2181
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +2 -17
- package/dist/index.d.ts +2 -17
- package/dist/index.mjs +1909 -1931
- package/dist/index.mjs.map +1 -1
- package/dist/registry.json +240 -293
- package/package.json +138 -138
package/package.json
CHANGED
|
@@ -1,138 +1,138 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "pxengine",
|
|
3
|
-
"version": "0.1.
|
|
4
|
-
"type": "module",
|
|
5
|
-
"description": "Shadcn-based UI component library for agent-driven interfaces",
|
|
6
|
-
"main": "./dist/index.cjs",
|
|
7
|
-
"module": "./dist/index.mjs",
|
|
8
|
-
"types": "./dist/index.d.ts",
|
|
9
|
-
"exports": {
|
|
10
|
-
".": {
|
|
11
|
-
"types": "./dist/index.d.ts",
|
|
12
|
-
"import": "./dist/index.mjs",
|
|
13
|
-
"require": "./dist/index.cjs"
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"files": [
|
|
17
|
-
"dist",
|
|
18
|
-
"config"
|
|
19
|
-
],
|
|
20
|
-
"scripts": {
|
|
21
|
-
"build": "tsup",
|
|
22
|
-
"prepublishOnly": "npm run build",
|
|
23
|
-
"generate-metadata": "tsx --env-file-if-exists=.env scripts/generate-metadata.ts",
|
|
24
|
-
"generate-molecule-registry": "tsx --env-file-if-exists=.env scripts/generate-molecule-registry.ts",
|
|
25
|
-
"dev": "tsup src/index.ts --format cjs,esm --watch --dts",
|
|
26
|
-
"lint": "eslint src --ext .ts,.tsx",
|
|
27
|
-
"type-check": "tsc --noEmit",
|
|
28
|
-
"test": "vitest",
|
|
29
|
-
"test:run": "vitest run",
|
|
30
|
-
"test:coverage": "vitest run --coverage"
|
|
31
|
-
},
|
|
32
|
-
"keywords": [
|
|
33
|
-
"react",
|
|
34
|
-
"ui",
|
|
35
|
-
"components",
|
|
36
|
-
"shadcn",
|
|
37
|
-
"tailwind",
|
|
38
|
-
"atomic-design",
|
|
39
|
-
"agent-ui"
|
|
40
|
-
],
|
|
41
|
-
"author": "PXEngine Team",
|
|
42
|
-
"license": "MIT",
|
|
43
|
-
"peerDependencies": {
|
|
44
|
-
"framer-motion": "^11.18.2",
|
|
45
|
-
"highcharts": "^11.4.8",
|
|
46
|
-
"highcharts-react-official": "^3.2.3",
|
|
47
|
-
"react": "^18.0.0 || ^19.0.0",
|
|
48
|
-
"react-dom": "^18.0.0 || ^19.0.0",
|
|
49
|
-
"recharts": "^3.8.1",
|
|
50
|
-
"tailwindcss": "^3.4.0"
|
|
51
|
-
},
|
|
52
|
-
"peerDependenciesMeta": {
|
|
53
|
-
"highcharts": {
|
|
54
|
-
"optional": true
|
|
55
|
-
},
|
|
56
|
-
"highcharts-react-official": {
|
|
57
|
-
"optional": true
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
"devDependencies": {
|
|
61
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
62
|
-
"@testing-library/react": "^16.3.2",
|
|
63
|
-
"@testing-library/user-event": "^14.6.3",
|
|
64
|
-
"@types/node": "^20.19.30",
|
|
65
|
-
"@types/react": "^19.0.2",
|
|
66
|
-
"@types/react-dom": "^19.0.2",
|
|
67
|
-
"@vitejs/plugin-react": "^4.7.0",
|
|
68
|
-
"@vitest/coverage-v8": "^2.1.9",
|
|
69
|
-
"autoprefixer": "^10.4.23",
|
|
70
|
-
"eslint": "^8.0.0",
|
|
71
|
-
"framer-motion": "^11.18.2",
|
|
72
|
-
"highcharts": "^11.4.8",
|
|
73
|
-
"highcharts-react-official": "^3.2.3",
|
|
74
|
-
"jsdom": "^25.0.1",
|
|
75
|
-
"postcss": "^8.5.6",
|
|
76
|
-
"react-docgen-typescript": "^2.4.0",
|
|
77
|
-
"recharts": "^3.8.1",
|
|
78
|
-
"tailwindcss": "^3.4.17",
|
|
79
|
-
"tailwindcss-animate": "^1.0.7",
|
|
80
|
-
"ts-node": "^10.9.2",
|
|
81
|
-
"tsup": "^8.3.5",
|
|
82
|
-
"tsx": "^4.21.0",
|
|
83
|
-
"typescript": "^5.9.3",
|
|
84
|
-
"vitest": "^2.1.9"
|
|
85
|
-
},
|
|
86
|
-
"dependencies": {
|
|
87
|
-
"@dnd-kit/core": "^6.3.1",
|
|
88
|
-
"@dnd-kit/sortable": "^10.0.0",
|
|
89
|
-
"@dnd-kit/utilities": "^3.2.2",
|
|
90
|
-
"@emotion/is-prop-valid": "^1.3.1",
|
|
91
|
-
"@hookform/resolvers": "^5.2.2",
|
|
92
|
-
"@radix-ui/react-accordion": "^1.2.12",
|
|
93
|
-
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
94
|
-
"@radix-ui/react-aspect-ratio": "^1.1.8",
|
|
95
|
-
"@radix-ui/react-avatar": "^1.1.11",
|
|
96
|
-
"@radix-ui/react-checkbox": "^1.3.3",
|
|
97
|
-
"@radix-ui/react-collapsible": "^1.1.12",
|
|
98
|
-
"@radix-ui/react-context-menu": "^2.2.16",
|
|
99
|
-
"@radix-ui/react-dialog": "^1.1.15",
|
|
100
|
-
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
101
|
-
"@radix-ui/react-hover-card": "^1.1.15",
|
|
102
|
-
"@radix-ui/react-label": "^2.1.8",
|
|
103
|
-
"@radix-ui/react-menubar": "^1.1.16",
|
|
104
|
-
"@radix-ui/react-navigation-menu": "^1.2.14",
|
|
105
|
-
"@radix-ui/react-popover": "^1.1.15",
|
|
106
|
-
"@radix-ui/react-progress": "^1.1.8",
|
|
107
|
-
"@radix-ui/react-radio-group": "^1.3.8",
|
|
108
|
-
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
109
|
-
"@radix-ui/react-select": "^2.2.6",
|
|
110
|
-
"@radix-ui/react-separator": "^1.1.8",
|
|
111
|
-
"@radix-ui/react-slider": "^1.3.6",
|
|
112
|
-
"@radix-ui/react-slot": "^1.2.4",
|
|
113
|
-
"@radix-ui/react-switch": "^1.2.6",
|
|
114
|
-
"@radix-ui/react-tabs": "^1.1.13",
|
|
115
|
-
"@radix-ui/react-toggle": "^1.1.10",
|
|
116
|
-
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
117
|
-
"@radix-ui/react-tooltip": "^1.2.8",
|
|
118
|
-
"@tanstack/react-virtual": "^3.14.9",
|
|
119
|
-
"class-variance-authority": "^0.7.1",
|
|
120
|
-
"clsx": "^2.1.1",
|
|
121
|
-
"cmdk": "^1.1.1",
|
|
122
|
-
"date-fns": "^4.1.0",
|
|
123
|
-
"embla-carousel-react": "^8.6.0",
|
|
124
|
-
"input-otp": "^1.4.2",
|
|
125
|
-
"lucide-react": "^0.475.0",
|
|
126
|
-
"next-themes": "^0.4.6",
|
|
127
|
-
"rc-slider": "^11.1.7",
|
|
128
|
-
"react-day-picker": "^9.13.0",
|
|
129
|
-
"react-hook-form": "^7.71.1",
|
|
130
|
-
"react-markdown": "^10.1.0",
|
|
131
|
-
"react-resizable-panels": "^4.5.2",
|
|
132
|
-
"remark-gfm": "^4.0.1",
|
|
133
|
-
"sonner": "^2.0.7",
|
|
134
|
-
"tailwind-merge": "^2.6.0",
|
|
135
|
-
"vaul": "^1.1.2",
|
|
136
|
-
"zod": "^4.3.6"
|
|
137
|
-
}
|
|
138
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "pxengine",
|
|
3
|
+
"version": "0.1.158",
|
|
4
|
+
"type": "module",
|
|
5
|
+
"description": "Shadcn-based UI component library for agent-driven interfaces",
|
|
6
|
+
"main": "./dist/index.cjs",
|
|
7
|
+
"module": "./dist/index.mjs",
|
|
8
|
+
"types": "./dist/index.d.ts",
|
|
9
|
+
"exports": {
|
|
10
|
+
".": {
|
|
11
|
+
"types": "./dist/index.d.ts",
|
|
12
|
+
"import": "./dist/index.mjs",
|
|
13
|
+
"require": "./dist/index.cjs"
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"files": [
|
|
17
|
+
"dist",
|
|
18
|
+
"config"
|
|
19
|
+
],
|
|
20
|
+
"scripts": {
|
|
21
|
+
"build": "tsup",
|
|
22
|
+
"prepublishOnly": "npm run build",
|
|
23
|
+
"generate-metadata": "tsx --env-file-if-exists=.env scripts/generate-metadata.ts",
|
|
24
|
+
"generate-molecule-registry": "tsx --env-file-if-exists=.env scripts/generate-molecule-registry.ts",
|
|
25
|
+
"dev": "tsup src/index.ts --format cjs,esm --watch --dts",
|
|
26
|
+
"lint": "eslint src --ext .ts,.tsx",
|
|
27
|
+
"type-check": "tsc --noEmit",
|
|
28
|
+
"test": "vitest",
|
|
29
|
+
"test:run": "vitest run",
|
|
30
|
+
"test:coverage": "vitest run --coverage"
|
|
31
|
+
},
|
|
32
|
+
"keywords": [
|
|
33
|
+
"react",
|
|
34
|
+
"ui",
|
|
35
|
+
"components",
|
|
36
|
+
"shadcn",
|
|
37
|
+
"tailwind",
|
|
38
|
+
"atomic-design",
|
|
39
|
+
"agent-ui"
|
|
40
|
+
],
|
|
41
|
+
"author": "PXEngine Team",
|
|
42
|
+
"license": "MIT",
|
|
43
|
+
"peerDependencies": {
|
|
44
|
+
"framer-motion": "^11.18.2",
|
|
45
|
+
"highcharts": "^11.4.8",
|
|
46
|
+
"highcharts-react-official": "^3.2.3",
|
|
47
|
+
"react": "^18.0.0 || ^19.0.0",
|
|
48
|
+
"react-dom": "^18.0.0 || ^19.0.0",
|
|
49
|
+
"recharts": "^3.8.1",
|
|
50
|
+
"tailwindcss": "^3.4.0"
|
|
51
|
+
},
|
|
52
|
+
"peerDependenciesMeta": {
|
|
53
|
+
"highcharts": {
|
|
54
|
+
"optional": true
|
|
55
|
+
},
|
|
56
|
+
"highcharts-react-official": {
|
|
57
|
+
"optional": true
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"devDependencies": {
|
|
61
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
62
|
+
"@testing-library/react": "^16.3.2",
|
|
63
|
+
"@testing-library/user-event": "^14.6.3",
|
|
64
|
+
"@types/node": "^20.19.30",
|
|
65
|
+
"@types/react": "^19.0.2",
|
|
66
|
+
"@types/react-dom": "^19.0.2",
|
|
67
|
+
"@vitejs/plugin-react": "^4.7.0",
|
|
68
|
+
"@vitest/coverage-v8": "^2.1.9",
|
|
69
|
+
"autoprefixer": "^10.4.23",
|
|
70
|
+
"eslint": "^8.0.0",
|
|
71
|
+
"framer-motion": "^11.18.2",
|
|
72
|
+
"highcharts": "^11.4.8",
|
|
73
|
+
"highcharts-react-official": "^3.2.3",
|
|
74
|
+
"jsdom": "^25.0.1",
|
|
75
|
+
"postcss": "^8.5.6",
|
|
76
|
+
"react-docgen-typescript": "^2.4.0",
|
|
77
|
+
"recharts": "^3.8.1",
|
|
78
|
+
"tailwindcss": "^3.4.17",
|
|
79
|
+
"tailwindcss-animate": "^1.0.7",
|
|
80
|
+
"ts-node": "^10.9.2",
|
|
81
|
+
"tsup": "^8.3.5",
|
|
82
|
+
"tsx": "^4.21.0",
|
|
83
|
+
"typescript": "^5.9.3",
|
|
84
|
+
"vitest": "^2.1.9"
|
|
85
|
+
},
|
|
86
|
+
"dependencies": {
|
|
87
|
+
"@dnd-kit/core": "^6.3.1",
|
|
88
|
+
"@dnd-kit/sortable": "^10.0.0",
|
|
89
|
+
"@dnd-kit/utilities": "^3.2.2",
|
|
90
|
+
"@emotion/is-prop-valid": "^1.3.1",
|
|
91
|
+
"@hookform/resolvers": "^5.2.2",
|
|
92
|
+
"@radix-ui/react-accordion": "^1.2.12",
|
|
93
|
+
"@radix-ui/react-alert-dialog": "^1.1.15",
|
|
94
|
+
"@radix-ui/react-aspect-ratio": "^1.1.8",
|
|
95
|
+
"@radix-ui/react-avatar": "^1.1.11",
|
|
96
|
+
"@radix-ui/react-checkbox": "^1.3.3",
|
|
97
|
+
"@radix-ui/react-collapsible": "^1.1.12",
|
|
98
|
+
"@radix-ui/react-context-menu": "^2.2.16",
|
|
99
|
+
"@radix-ui/react-dialog": "^1.1.15",
|
|
100
|
+
"@radix-ui/react-dropdown-menu": "^2.1.16",
|
|
101
|
+
"@radix-ui/react-hover-card": "^1.1.15",
|
|
102
|
+
"@radix-ui/react-label": "^2.1.8",
|
|
103
|
+
"@radix-ui/react-menubar": "^1.1.16",
|
|
104
|
+
"@radix-ui/react-navigation-menu": "^1.2.14",
|
|
105
|
+
"@radix-ui/react-popover": "^1.1.15",
|
|
106
|
+
"@radix-ui/react-progress": "^1.1.8",
|
|
107
|
+
"@radix-ui/react-radio-group": "^1.3.8",
|
|
108
|
+
"@radix-ui/react-scroll-area": "^1.2.10",
|
|
109
|
+
"@radix-ui/react-select": "^2.2.6",
|
|
110
|
+
"@radix-ui/react-separator": "^1.1.8",
|
|
111
|
+
"@radix-ui/react-slider": "^1.3.6",
|
|
112
|
+
"@radix-ui/react-slot": "^1.2.4",
|
|
113
|
+
"@radix-ui/react-switch": "^1.2.6",
|
|
114
|
+
"@radix-ui/react-tabs": "^1.1.13",
|
|
115
|
+
"@radix-ui/react-toggle": "^1.1.10",
|
|
116
|
+
"@radix-ui/react-toggle-group": "^1.1.11",
|
|
117
|
+
"@radix-ui/react-tooltip": "^1.2.8",
|
|
118
|
+
"@tanstack/react-virtual": "^3.14.9",
|
|
119
|
+
"class-variance-authority": "^0.7.1",
|
|
120
|
+
"clsx": "^2.1.1",
|
|
121
|
+
"cmdk": "^1.1.1",
|
|
122
|
+
"date-fns": "^4.1.0",
|
|
123
|
+
"embla-carousel-react": "^8.6.0",
|
|
124
|
+
"input-otp": "^1.4.2",
|
|
125
|
+
"lucide-react": "^0.475.0",
|
|
126
|
+
"next-themes": "^0.4.6",
|
|
127
|
+
"rc-slider": "^11.1.7",
|
|
128
|
+
"react-day-picker": "^9.13.0",
|
|
129
|
+
"react-hook-form": "^7.71.1",
|
|
130
|
+
"react-markdown": "^10.1.0",
|
|
131
|
+
"react-resizable-panels": "^4.5.2",
|
|
132
|
+
"remark-gfm": "^4.0.1",
|
|
133
|
+
"sonner": "^2.0.7",
|
|
134
|
+
"tailwind-merge": "^2.6.0",
|
|
135
|
+
"vaul": "^1.1.2",
|
|
136
|
+
"zod": "^4.3.6"
|
|
137
|
+
}
|
|
138
|
+
}
|