@conscia-labs/design-system 1.0.3 → 1.2.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/AGENT_GUIDE.md +222 -0
- package/README.md +113 -837
- package/agent-manifest.json +472 -0
- package/bin/conscia-design-system.mjs +109 -0
- package/dist/{chunk-HAJMOT3P.js → chunk-HWUUODVE.js} +2 -2
- package/dist/chunk-HWUUODVE.js.map +1 -0
- package/dist/{chunk-LPUWW7XF.js → chunk-OYJH5CVD.js} +545 -252
- package/dist/chunk-OYJH5CVD.js.map +1 -0
- package/dist/{chunk-QP3SEL2Z.js → chunk-SIRISAFC.js} +2 -2
- package/dist/foundation.css +76 -19
- package/dist/index.d.ts +1 -1
- package/dist/index.js +27 -3
- package/dist/patterns/index.d.ts +86 -7
- package/dist/patterns/index.js +26 -2
- package/dist/primitives/index.d.ts +2 -2
- package/dist/primitives/index.js +2 -2
- package/dist/standalone.css +1 -1
- package/dist/styles.css +76 -19
- package/package.json +19 -6
- package/dist/chunk-HAJMOT3P.js.map +0 -1
- package/dist/chunk-LPUWW7XF.js.map +0 -1
- /package/dist/{chunk-QP3SEL2Z.js.map → chunk-SIRISAFC.js.map} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@conscia-labs/design-system",
|
|
3
|
-
"version": "1.0
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "The shared React component library for building clear, consistent, and accessible Conscia product experiences.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -8,9 +8,15 @@
|
|
|
8
8
|
"module": "./dist/index.js",
|
|
9
9
|
"types": "./dist/index.d.ts",
|
|
10
10
|
"files": [
|
|
11
|
+
"bin",
|
|
11
12
|
"dist",
|
|
13
|
+
"AGENT_GUIDE.md",
|
|
14
|
+
"agent-manifest.json",
|
|
12
15
|
"README.md"
|
|
13
16
|
],
|
|
17
|
+
"bin": {
|
|
18
|
+
"conscia-design-system": "./bin/conscia-design-system.mjs"
|
|
19
|
+
},
|
|
14
20
|
"sideEffects": [
|
|
15
21
|
"./dist/foundation.css",
|
|
16
22
|
"./dist/standalone.css",
|
|
@@ -47,20 +53,27 @@
|
|
|
47
53
|
"./tailwind.css": "./dist/tailwind.css",
|
|
48
54
|
"./standalone.css": "./dist/standalone.css",
|
|
49
55
|
"./styles.css": "./dist/styles.css",
|
|
56
|
+
"./agent-guide.md": "./AGENT_GUIDE.md",
|
|
57
|
+
"./agent-manifest.json": "./agent-manifest.json",
|
|
50
58
|
"./package.json": "./package.json"
|
|
51
59
|
},
|
|
52
60
|
"scripts": {
|
|
53
|
-
"dev:playground": "next dev playground --webpack -p 3020 --hostname 127.0.0.1",
|
|
54
|
-
"build": "pnpm build:js && pnpm build:css",
|
|
61
|
+
"dev:playground": "pnpm build:agent && next dev playground --webpack -p 3020 --hostname 127.0.0.1",
|
|
62
|
+
"build": "pnpm build:agent && pnpm build:js && pnpm build:css",
|
|
63
|
+
"build:agent": "node scripts/build-agent-manifest.mjs",
|
|
64
|
+
"version": "node scripts/sync-release-metadata.mjs",
|
|
55
65
|
"build:js": "tsup",
|
|
56
66
|
"build:css": "node scripts/build-css.mjs",
|
|
57
|
-
"build:playground": "next build playground",
|
|
67
|
+
"build:playground": "pnpm build:agent && next build playground",
|
|
68
|
+
"build:playground:static": "pnpm build:agent && node scripts/build-playground-static.mjs",
|
|
58
69
|
"start:playground": "next start playground -p 3020",
|
|
59
|
-
"test": "pnpm test:contracts && pnpm test:unit",
|
|
70
|
+
"test": "pnpm test:contracts && pnpm test:agent && pnpm test:unit",
|
|
71
|
+
"test:agent": "node --test test/agent-support.test.mjs",
|
|
60
72
|
"test:contracts": "node --test playground/src/test/*.test.mjs",
|
|
61
73
|
"test:unit": "vitest run",
|
|
62
74
|
"test:visual": "playwright test",
|
|
63
75
|
"test:visual:update": "playwright test --update-snapshots",
|
|
76
|
+
"release": "node scripts/create-release-tag.mjs",
|
|
64
77
|
"test:package": "pnpm build && pnpm lint:package && node scripts/verify-package.mjs",
|
|
65
78
|
"test:consumer": "node scripts/test-packaged-consumer.mjs",
|
|
66
79
|
"lint": "eslint src --max-warnings=0",
|
|
@@ -74,7 +87,7 @@
|
|
|
74
87
|
"type": "git",
|
|
75
88
|
"url": "git+https://github.com/conscia-labs/design-system.git"
|
|
76
89
|
},
|
|
77
|
-
"homepage": "https://
|
|
90
|
+
"homepage": "https://conscia-labs.github.io/design-system/",
|
|
78
91
|
"bugs": {
|
|
79
92
|
"url": "https://github.com/conscia-labs/design-system/issues"
|
|
80
93
|
},
|