@tmorrow/cre8-wc 1.1.4 → 1.1.6
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/lib/components/card/card.styles.d.ts.map +1 -1
- package/lib/components/card/card.styles.js +338 -1
- package/lib/components/card/card.styles.js.map +1 -1
- package/lib/components/field/field.styles.d.ts.map +1 -1
- package/lib/components/field/field.styles.js +359 -1
- package/lib/components/field/field.styles.js.map +1 -1
- package/lib/components/inline-alert/inline-alert.styles.d.ts.map +1 -1
- package/lib/components/inline-alert/inline-alert.styles.js +392 -1
- package/lib/components/inline-alert/inline-alert.styles.js.map +1 -1
- package/lib/design-tokens/brands/cre8-a2ui/css/tokens_brand.css +2 -0
- package/lib/design-tokens/brands/cre8-a2ui/css/tokens_cre8-a2ui.module.d.ts +1 -1
- package/lib/design-tokens/brands/cre8-a2ui/css/tokens_cre8-a2ui.module.d.ts.map +1 -1
- package/lib/design-tokens/brands/cre8-a2ui/css/tokens_cre8-a2ui.module.js +7 -3
- package/lib/design-tokens/brands/cre8-a2ui/css/tokens_cre8-a2ui.module.js.map +1 -1
- package/lib/design-tokens/core/scss/theming/component.scss +1 -1
- package/lib/design-tokens/core/scss/theming/variables.css +39 -1
- package/lib/design-tokens/core/scss/theming/variables.scss +3 -1
- package/lib/scripts/generate-mcp-manifest.d.ts +8 -0
- package/lib/scripts/generate-mcp-manifest.d.ts.map +1 -0
- package/lib/scripts/generate-mcp-manifest.js +350 -0
- package/lib/scripts/generate-mcp-manifest.js.map +1 -0
- package/mcp-manifest.json +3844 -0
- package/package.json +7 -3
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tmorrow/cre8-wc",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.6",
|
|
4
4
|
"description": "cre8 Web Components is a library of presentational UI web components to be consumed by # web applications.",
|
|
5
5
|
"license": "BSD-3-Clause",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"start": "pnpm run build:custom-elements.json && pnpm run storybook",
|
|
8
|
-
"build": "rm -rf lib && vite build && tsc && cp .storybook/custom-elements.json custom-elements.json && npx tsx scripts/generate-react-wrappers.ts && cd react-wrappers && npx tsc",
|
|
8
|
+
"build": "rm -rf lib && vite build && tsc && cp .storybook/custom-elements.json custom-elements.json && npx tsx scripts/generate-react-wrappers.ts && cd react-wrappers && npx tsc && cd .. && pnpm run build:mcp-manifest",
|
|
9
|
+
"build:mcp-manifest": "npx web-component-analyzer analyze \"components/*/*.ts\" --format json --outFile /tmp/wca-raw.json && npx tsx scripts/generate-mcp-manifest.ts",
|
|
9
10
|
"build:cdn": "rm -rf cdn && vite build --config vite.config.cdn.ts",
|
|
10
11
|
"build:all": "pnpm run build:cdn && pnpm run build",
|
|
11
12
|
"build:watch": "vite build --watch",
|
|
@@ -42,7 +43,8 @@
|
|
|
42
43
|
"files": [
|
|
43
44
|
"dist",
|
|
44
45
|
"lib",
|
|
45
|
-
"cdn"
|
|
46
|
+
"cdn",
|
|
47
|
+
"mcp-manifest.json"
|
|
46
48
|
],
|
|
47
49
|
"exports": {
|
|
48
50
|
".": {
|
|
@@ -71,6 +73,7 @@
|
|
|
71
73
|
"default": "./lib/design-tokens/*"
|
|
72
74
|
},
|
|
73
75
|
"./global.d.ts": "./global.d.ts",
|
|
76
|
+
"./mcp-manifest.json": "./mcp-manifest.json",
|
|
74
77
|
"./package.json": "./package.json"
|
|
75
78
|
},
|
|
76
79
|
"repository": {
|
|
@@ -148,6 +151,7 @@
|
|
|
148
151
|
"ts-jest": "^29.4.5",
|
|
149
152
|
"ts-lit-plugin": "^2.0.2",
|
|
150
153
|
"ts-node": "^10.9.2",
|
|
154
|
+
"tsx": "^4.21.0",
|
|
151
155
|
"typescript": "^5.9.3",
|
|
152
156
|
"vite": "^7.2.2"
|
|
153
157
|
},
|