uidex 0.5.0 → 0.5.1
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/dist/cli/cli.cjs +115 -14
- package/dist/cli/cli.cjs.map +1 -1
- package/dist/headless/index.cjs +3 -0
- package/dist/headless/index.cjs.map +1 -1
- package/dist/headless/index.js +3 -0
- package/dist/headless/index.js.map +1 -1
- package/dist/index.cjs +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/react/index.cjs +3 -0
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.js +3 -0
- package/dist/react/index.js.map +1 -1
- package/dist/scan/index.cjs +110 -9
- package/dist/scan/index.cjs.map +1 -1
- package/dist/scan/index.d.cts +1 -1
- package/dist/scan/index.d.ts +1 -1
- package/dist/scan/index.js +110 -9
- package/dist/scan/index.js.map +1 -1
- package/package.json +19 -26
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uidex",
|
|
3
|
-
"version": "0.5.
|
|
3
|
+
"version": "0.5.1",
|
|
4
4
|
"description": "Convention-driven UI element registry and devtools surface for React apps.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -57,15 +57,21 @@
|
|
|
57
57
|
"publishConfig": {
|
|
58
58
|
"access": "public"
|
|
59
59
|
},
|
|
60
|
-
"
|
|
61
|
-
"
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
"
|
|
65
|
-
|
|
66
|
-
|
|
60
|
+
"scripts": {
|
|
61
|
+
"dev": "tsup --watch",
|
|
62
|
+
"build": "pnpm run generate:api-routes && pnpm run build:css && tsup && pnpm run check:bundles",
|
|
63
|
+
"generate:api-routes": "tsx scripts/generate-api-routes.ts",
|
|
64
|
+
"build:css": "tailwindcss --input src/browser/styles/tailwind.css --output src/browser/styles/tailwind.built.css",
|
|
65
|
+
"check:bundles": "node scripts/check-bundles.mjs",
|
|
66
|
+
"test": "vitest run",
|
|
67
|
+
"test:watch": "vitest",
|
|
68
|
+
"lint": "eslint src/",
|
|
69
|
+
"typecheck": "tsc --noEmit",
|
|
70
|
+
"views-map": "tsx scripts/extract-views-map.ts",
|
|
71
|
+
"views-map:check": "tsx scripts/extract-views-map.ts --check"
|
|
67
72
|
},
|
|
68
73
|
"dependencies": {
|
|
74
|
+
"@hey-api/client-fetch": "^0.10.0",
|
|
69
75
|
"@clack/prompts": "^1.2.0",
|
|
70
76
|
"@zag-js/core": "^1.40.0",
|
|
71
77
|
"@zag-js/dialog": "^1.40.0",
|
|
@@ -96,6 +102,9 @@
|
|
|
96
102
|
"@types/node": "^22.10.5",
|
|
97
103
|
"@types/react": "^19.2.14",
|
|
98
104
|
"@types/react-dom": "^19.2.3",
|
|
105
|
+
"@uidex/api-client": "workspace:*",
|
|
106
|
+
"@uidex/eslint-config": "workspace:*",
|
|
107
|
+
"@uidex/tsconfig": "workspace:*",
|
|
99
108
|
"@vitejs/plugin-react": "^4.3.4",
|
|
100
109
|
"eslint": "^9.18.0",
|
|
101
110
|
"jsdom": "^26.0.0",
|
|
@@ -105,10 +114,7 @@
|
|
|
105
114
|
"tsup": "^8.3.5",
|
|
106
115
|
"tsx": "^4.7.0",
|
|
107
116
|
"typescript": "^5.9.3",
|
|
108
|
-
"vitest": "^2.1.8"
|
|
109
|
-
"@uidex/api-client": "0.0.1",
|
|
110
|
-
"@uidex/eslint-config": "0.0.0",
|
|
111
|
-
"@uidex/tsconfig": "0.0.0"
|
|
117
|
+
"vitest": "^2.1.8"
|
|
112
118
|
},
|
|
113
119
|
"keywords": [
|
|
114
120
|
"uidex",
|
|
@@ -123,18 +129,5 @@
|
|
|
123
129
|
"repository": {
|
|
124
130
|
"type": "git",
|
|
125
131
|
"url": "https://github.com/soel/uidex"
|
|
126
|
-
},
|
|
127
|
-
"scripts": {
|
|
128
|
-
"dev": "tsup --watch",
|
|
129
|
-
"build": "pnpm run generate:api-routes && pnpm run build:css && tsup && pnpm run check:bundles",
|
|
130
|
-
"generate:api-routes": "tsx scripts/generate-api-routes.ts",
|
|
131
|
-
"build:css": "tailwindcss --input src/browser/styles/tailwind.css --output src/browser/styles/tailwind.built.css",
|
|
132
|
-
"check:bundles": "node scripts/check-bundles.mjs",
|
|
133
|
-
"test": "vitest run",
|
|
134
|
-
"test:watch": "vitest",
|
|
135
|
-
"lint": "eslint src/",
|
|
136
|
-
"typecheck": "tsc --noEmit",
|
|
137
|
-
"views-map": "tsx scripts/extract-views-map.ts",
|
|
138
|
-
"views-map:check": "tsx scripts/extract-views-map.ts --check"
|
|
139
132
|
}
|
|
140
|
-
}
|
|
133
|
+
}
|