@sovann72-dev/lynqify-ui 1.0.7 → 1.0.9
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 +17 -6
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@sovann72-dev/lynqify-ui",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.9",
|
|
4
4
|
"module": "dist/lynqify-ui.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"exports": {
|
|
@@ -33,9 +33,16 @@
|
|
|
33
33
|
"lint:fix": "eslint src --ext .ts,.tsx,.js,.jsx --fix",
|
|
34
34
|
"lint:prettier": "prettier --write .",
|
|
35
35
|
"check-types": "tsc --project tsconfig.json --pretty --noEmit",
|
|
36
|
+
"compile": "tsc --build",
|
|
36
37
|
"test": "vite test",
|
|
37
38
|
"vitest": "vitest",
|
|
38
39
|
"cy:open": "cypress open",
|
|
40
|
+
"test:all": "yarn vitest run && yarn test:integration:all",
|
|
41
|
+
"test:integration:all": "cypress run --browser chrome --component --spec 'src/**/*.integration.cy.tsx'",
|
|
42
|
+
"test:integration:e2e": "cypress run --browser chrome --e2e --spec 'src/**/*.e2e.integration.cy.tsx'",
|
|
43
|
+
"test:integration:component": "cypress run --browser chrome --component --spec 'src/**/*.component.integration.cy.tsx'",
|
|
44
|
+
"test:integration:component:one": "cypress run --browser chrome --component --spec",
|
|
45
|
+
"test:integration:e2e:one": "cypress run --browser chrome --e2e --spec",
|
|
39
46
|
"analyze": "source-map-explorer 'build/static/js/*.js'",
|
|
40
47
|
"build:analyze": "ANALYZE=true vite build",
|
|
41
48
|
"prepare": "husky"
|
|
@@ -161,11 +168,13 @@
|
|
|
161
168
|
"uuid": "^9.0.1",
|
|
162
169
|
"vaul": "^0.9.0",
|
|
163
170
|
"web-vitals": "^2.1.4",
|
|
164
|
-
"@tiptap/core": "^3.22.5",
|
|
165
|
-
"@tiptap/react": "^3.22.5",
|
|
166
171
|
"y-prosemirror": "^1.3.7",
|
|
167
172
|
"y-protocols": "^1.0.6",
|
|
168
173
|
"yjs": "^13.6.27",
|
|
174
|
+
"zod": "^3.22.4"
|
|
175
|
+
},
|
|
176
|
+
"peerDependencies": {
|
|
177
|
+
"@tiptap/core": "^3.22.5",
|
|
169
178
|
"@tiptap/extension-bold": "^3.22.5",
|
|
170
179
|
"@tiptap/extension-color": "^3.22.5",
|
|
171
180
|
"@tiptap/extension-document": "^3.22.5",
|
|
@@ -186,11 +195,9 @@
|
|
|
186
195
|
"@tiptap/extension-underline": "^3.22.5",
|
|
187
196
|
"@tiptap/extensions": "^3.22.5",
|
|
188
197
|
"@tiptap/pm": "^3.22.5",
|
|
198
|
+
"@tiptap/react": "^3.22.5",
|
|
189
199
|
"@tiptap/starter-kit": "^3.22.5",
|
|
190
200
|
"@tiptap/suggestion": "^3.22.5",
|
|
191
|
-
"zod": "^3.22.4"
|
|
192
|
-
},
|
|
193
|
-
"peerDependencies": {
|
|
194
201
|
"react": "^18.2.0",
|
|
195
202
|
"react-dom": "^18.2.0"
|
|
196
203
|
},
|
|
@@ -200,6 +207,8 @@
|
|
|
200
207
|
"@babel/plugin-proposal-private-property-in-object": "^7.21.11",
|
|
201
208
|
"@commitlint/cli": "^20.5.3",
|
|
202
209
|
"@commitlint/config-conventional": "^20.5.3",
|
|
210
|
+
"@cypress/react": "^9.0.2",
|
|
211
|
+
"@cypress/vite-dev-server": "^7.3.1",
|
|
203
212
|
"@eslint/js": "^9.5.0",
|
|
204
213
|
"@faker-js/faker": "^9.6.0",
|
|
205
214
|
"@nabla/vite-plugin-eslint": "^2.0.5",
|
|
@@ -246,6 +255,7 @@
|
|
|
246
255
|
"autoprefixer": "^10.4.19",
|
|
247
256
|
"babel-plugin-module-resolver": "^5.0.0",
|
|
248
257
|
"cypress": "^14.2.0",
|
|
258
|
+
"cypress-terminal-report": "^7.3.3",
|
|
249
259
|
"eslint": "8",
|
|
250
260
|
"eslint-config-prettier": "^9.1.0",
|
|
251
261
|
"eslint-import-resolver-typescript": "^3.6.1",
|
|
@@ -260,6 +270,7 @@
|
|
|
260
270
|
"eslint-plugin-tailwindcss": "^3.15.1",
|
|
261
271
|
"eslint-plugin-testing-library": "^6.2.2",
|
|
262
272
|
"husky": "^9.1.7",
|
|
273
|
+
"jsdom": "^29.1.1",
|
|
263
274
|
"lint-staged": "^15.2.0",
|
|
264
275
|
"prettier": "^3.3.3",
|
|
265
276
|
"prettier-plugin-tailwindcss": "^0.6.6",
|