@wtfalch/design 0.11.0 → 0.12.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wtfalch/design",
3
- "version": "0.11.0",
3
+ "version": "0.12.0",
4
4
  "description": "wtfalch's design system: themeable components on a fixed token vocabulary.",
5
5
  "keywords": [
6
6
  "design-system",
@@ -48,7 +48,15 @@
48
48
  "default": "./dist/themes/index.js"
49
49
  },
50
50
  "./tokens.css": "./dist/tokens.css",
51
- "./styles.css": "./dist/styles/index.css"
51
+ "./styles.css": "./dist/styles/index.css",
52
+ "./editor": {
53
+ "types": "./dist/editor.d.ts",
54
+ "default": "./dist/editor.js"
55
+ },
56
+ "./rich-text": {
57
+ "types": "./dist/rich-text.d.ts",
58
+ "default": "./dist/rich-text.js"
59
+ }
52
60
  },
53
61
  "sideEffects": ["*.css"],
54
62
  "engines": {
@@ -61,8 +69,14 @@
61
69
  "test": "vitest run"
62
70
  },
63
71
  "peerDependencies": {
72
+ "@tiptap/extension-link": "^3.31.0",
73
+ "@tiptap/extensions": "^3.31.0",
74
+ "@tiptap/pm": "^3.31.0",
75
+ "@tiptap/react": "^3.31.0",
76
+ "@tiptap/starter-kit": "^3.31.0",
64
77
  "react": "^19.0.0",
65
- "react-dom": "^19.0.0"
78
+ "react-dom": "^19.0.0",
79
+ "zod": "^4.0.0"
66
80
  },
67
81
  "dependencies": {
68
82
  "@radix-ui/react-slot": "^1.3.3",
@@ -72,6 +86,11 @@
72
86
  },
73
87
  "devDependencies": {
74
88
  "@tailwindcss/cli": "^4.3.3",
89
+ "@tiptap/extension-link": "^3.31.3",
90
+ "@tiptap/extensions": "^3.31.3",
91
+ "@tiptap/pm": "^3.31.3",
92
+ "@tiptap/react": "^3.31.3",
93
+ "@tiptap/starter-kit": "^3.31.3",
75
94
  "@types/node": "^22",
76
95
  "@types/react": "^19",
77
96
  "@types/react-dom": "^19",
@@ -79,6 +98,27 @@
79
98
  "react-dom": "^19",
80
99
  "tailwindcss": "^4.3.3",
81
100
  "typescript": "^5.9.0",
82
- "vitest": "^4.1.6"
101
+ "vitest": "^4.1.6",
102
+ "zod": "^4.0.0"
103
+ },
104
+ "peerDependenciesMeta": {
105
+ "@tiptap/extension-link": {
106
+ "optional": true
107
+ },
108
+ "@tiptap/extensions": {
109
+ "optional": true
110
+ },
111
+ "@tiptap/pm": {
112
+ "optional": true
113
+ },
114
+ "@tiptap/react": {
115
+ "optional": true
116
+ },
117
+ "@tiptap/starter-kit": {
118
+ "optional": true
119
+ },
120
+ "zod": {
121
+ "optional": true
122
+ }
83
123
  }
84
124
  }