@kitn.ai/ui 0.20.0 → 0.20.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/index.server.js +16404 -0
- package/package.json +7 -2
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@kitn.ai/ui",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.1",
|
|
4
4
|
"nx": {
|
|
5
5
|
"name": "ui",
|
|
6
6
|
"targets": {
|
|
@@ -73,6 +73,10 @@
|
|
|
73
73
|
"exports": {
|
|
74
74
|
".": {
|
|
75
75
|
"types": "./dist/index.d.ts",
|
|
76
|
+
"worker": "./dist/index.server.js",
|
|
77
|
+
"browser": "./dist/index.js",
|
|
78
|
+
"deno": "./dist/index.server.js",
|
|
79
|
+
"node": "./dist/index.server.js",
|
|
76
80
|
"default": "./dist/index.js"
|
|
77
81
|
},
|
|
78
82
|
"./elements": {
|
|
@@ -124,13 +128,14 @@
|
|
|
124
128
|
"scripts": {
|
|
125
129
|
"prepublishOnly": "npm run build",
|
|
126
130
|
"prebuild": "npm run build:css",
|
|
127
|
-
"build": "vite build --config vite.config.ts && vite build --config vite.config.provider.ts && vite build --config vite.config.react.ts && vite build --config vite.config.barrel.ts && vite build --config vite.config.state.ts && vite build --config vite.config.mcp.ts && npm run build:elements && node scripts/verify-elements-bundle.mjs && node scripts/verify-react-wrappers.mjs && node scripts/verify-shader-lazy.mjs",
|
|
131
|
+
"build": "vite build --config vite.config.ts && vite build --config vite.config.provider.ts && vite build --config vite.config.react.ts && vite build --config vite.config.barrel.ts && vite build --config vite.config.barrel.server.ts && vite build --config vite.config.state.ts && vite build --config vite.config.mcp.ts && npm run build:elements && node scripts/verify-elements-bundle.mjs && node scripts/verify-react-wrappers.mjs && node scripts/verify-shader-lazy.mjs",
|
|
128
132
|
"build:elements": "node scripts/gen-elements-manifest.mjs && vite build --config vite.config.elements.ts && node scripts/gen-element-dts.mjs",
|
|
129
133
|
"postbuild": "npm run build:theme && npm run build:api && npm run build:schemas",
|
|
130
134
|
"build:theme": "node scripts/build-theme-tokens.mjs",
|
|
131
135
|
"build:api": "node scripts/gen-element-api.mjs",
|
|
132
136
|
"build:schemas": "node scripts/copy-card-schemas.mjs",
|
|
133
137
|
"verify:consumer": "node scripts/verify-consumer-sideeffects.mjs",
|
|
138
|
+
"verify:ssr": "node scripts/verify-ssr-imports.mjs",
|
|
134
139
|
"test": "vitest run",
|
|
135
140
|
"test:react": "vitest run --config vitest.react.config.ts",
|
|
136
141
|
"test:storybook": "vitest run --project=storybook",
|