uidex 0.8.0 → 0.10.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/dist/cli/cli.cjs +1273 -343
- 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.d.cts +19 -13
- package/dist/headless/index.d.ts +19 -13
- 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.d.cts +19 -13
- package/dist/index.d.ts +19 -13
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/dist/playwright/index.cjs +36 -7
- package/dist/playwright/index.cjs.map +1 -1
- package/dist/playwright/index.js +36 -7
- package/dist/playwright/index.js.map +1 -1
- package/dist/playwright/states-reporter.cjs +36 -7
- package/dist/playwright/states-reporter.cjs.map +1 -1
- package/dist/playwright/states-reporter.d.cts +15 -0
- package/dist/playwright/states-reporter.d.ts +15 -0
- package/dist/playwright/states-reporter.js +36 -7
- package/dist/playwright/states-reporter.js.map +1 -1
- package/dist/playwright/states.cjs +8 -0
- package/dist/playwright/states.cjs.map +1 -1
- package/dist/playwright/states.d.cts +44 -1
- package/dist/playwright/states.d.ts +44 -1
- package/dist/playwright/states.js +7 -0
- package/dist/playwright/states.js.map +1 -1
- package/dist/react/index.cjs +3 -0
- package/dist/react/index.cjs.map +1 -1
- package/dist/react/index.d.cts +19 -13
- package/dist/react/index.d.ts +19 -13
- package/dist/react/index.js +3 -0
- package/dist/react/index.js.map +1 -1
- package/dist/scan/index.cjs +1217 -257
- package/dist/scan/index.cjs.map +1 -1
- package/dist/scan/index.d.cts +410 -104
- package/dist/scan/index.d.ts +410 -104
- package/dist/scan/index.js +1197 -253
- package/dist/scan/index.js.map +1 -1
- package/package.json +17 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "uidex",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.10.0",
|
|
4
4
|
"description": "Convention-driven UI element registry and devtools surface for React apps.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.js",
|
|
@@ -62,18 +62,6 @@
|
|
|
62
62
|
"publishConfig": {
|
|
63
63
|
"access": "public"
|
|
64
64
|
},
|
|
65
|
-
"scripts": {
|
|
66
|
-
"dev": "tsup --watch",
|
|
67
|
-
"build": "pnpm run build:css && pnpm run typecheck && tsup && pnpm run check:bundles",
|
|
68
|
-
"build:css": "tailwindcss --input src/browser/styles/tailwind.css --output src/browser/styles/tailwind.built.css",
|
|
69
|
-
"check:bundles": "node scripts/check-bundles.mjs",
|
|
70
|
-
"test": "vitest run",
|
|
71
|
-
"test:watch": "vitest",
|
|
72
|
-
"lint": "eslint src/",
|
|
73
|
-
"typecheck": "tsc --noEmit",
|
|
74
|
-
"views-map": "tsx scripts/extract-views-map.ts",
|
|
75
|
-
"views-map:check": "tsx scripts/extract-views-map.ts --check"
|
|
76
|
-
},
|
|
77
65
|
"dependencies": {
|
|
78
66
|
"@clack/prompts": "^1.2.0",
|
|
79
67
|
"@zag-js/core": "^1.40.0",
|
|
@@ -100,8 +88,6 @@
|
|
|
100
88
|
"@types/node": "^22.10.5",
|
|
101
89
|
"@types/react": "^19.2.14",
|
|
102
90
|
"@types/react-dom": "^19.2.3",
|
|
103
|
-
"@uidex/eslint-config": "workspace:*",
|
|
104
|
-
"@uidex/tsconfig": "workspace:*",
|
|
105
91
|
"@vitejs/plugin-react": "^4.3.4",
|
|
106
92
|
"eslint": "^9.18.0",
|
|
107
93
|
"jsdom": "^26.0.0",
|
|
@@ -111,7 +97,9 @@
|
|
|
111
97
|
"tsup": "^8.3.5",
|
|
112
98
|
"tsx": "^4.7.0",
|
|
113
99
|
"typescript": "^5.9.3",
|
|
114
|
-
"vitest": "^2.1.8"
|
|
100
|
+
"vitest": "^2.1.8",
|
|
101
|
+
"@uidex/eslint-config": "0.0.0",
|
|
102
|
+
"@uidex/tsconfig": "0.0.0"
|
|
115
103
|
},
|
|
116
104
|
"keywords": [
|
|
117
105
|
"uidex",
|
|
@@ -126,5 +114,17 @@
|
|
|
126
114
|
"repository": {
|
|
127
115
|
"type": "git",
|
|
128
116
|
"url": "https://github.com/soel/uidex"
|
|
117
|
+
},
|
|
118
|
+
"scripts": {
|
|
119
|
+
"dev": "tsup --watch",
|
|
120
|
+
"build": "pnpm run build:css && pnpm run typecheck && tsup && pnpm run check:bundles",
|
|
121
|
+
"build:css": "tailwindcss --input src/browser/styles/tailwind.css --output src/browser/styles/tailwind.built.css",
|
|
122
|
+
"check:bundles": "node scripts/check-bundles.mjs",
|
|
123
|
+
"test": "vitest run",
|
|
124
|
+
"test:watch": "vitest",
|
|
125
|
+
"lint": "eslint src/",
|
|
126
|
+
"typecheck": "tsc --noEmit",
|
|
127
|
+
"views-map": "tsx scripts/extract-views-map.ts",
|
|
128
|
+
"views-map:check": "tsx scripts/extract-views-map.ts --check"
|
|
129
129
|
}
|
|
130
|
-
}
|
|
130
|
+
}
|