@sovann72-dev/lynqify-ui 1.0.8 → 1.0.10
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 +16 -5
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.10",
|
|
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"
|
|
@@ -167,10 +174,7 @@
|
|
|
167
174
|
"zod": "^3.22.4"
|
|
168
175
|
},
|
|
169
176
|
"peerDependencies": {
|
|
170
|
-
"react": "^18.2.0",
|
|
171
|
-
"react-dom": "^18.2.0",
|
|
172
177
|
"@tiptap/core": "^3.22.5",
|
|
173
|
-
"@tiptap/react": "^3.22.5",
|
|
174
178
|
"@tiptap/extension-bold": "^3.22.5",
|
|
175
179
|
"@tiptap/extension-color": "^3.22.5",
|
|
176
180
|
"@tiptap/extension-document": "^3.22.5",
|
|
@@ -191,8 +195,11 @@
|
|
|
191
195
|
"@tiptap/extension-underline": "^3.22.5",
|
|
192
196
|
"@tiptap/extensions": "^3.22.5",
|
|
193
197
|
"@tiptap/pm": "^3.22.5",
|
|
198
|
+
"@tiptap/react": "^3.22.5",
|
|
194
199
|
"@tiptap/starter-kit": "^3.22.5",
|
|
195
|
-
"@tiptap/suggestion": "^3.22.5"
|
|
200
|
+
"@tiptap/suggestion": "^3.22.5",
|
|
201
|
+
"react": "^18.2.0",
|
|
202
|
+
"react-dom": "^18.2.0"
|
|
196
203
|
},
|
|
197
204
|
"devDependencies": {
|
|
198
205
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
@@ -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",
|