|
1 | 1 | {
|
2 | 2 | "name": "@leo91000/vue-tiptap-renderer",
|
3 |
| - "keywords": [ |
4 |
| - "tiptap", |
5 |
| - "json", |
6 |
| - "vue", |
7 |
| - "render", |
8 |
| - "function" |
9 |
| - ], |
10 |
| - "license": "MIT", |
| 3 | + "type": "module", |
| 4 | + "version": "0.2.2", |
| 5 | + "packageManager": "[email protected]", |
11 | 6 | "description": "Tiptap JSON content renderer for Vue 2/3",
|
12 | 7 | "author": {
|
13 | 8 | "name": "Léo Coletta",
|
14 | 9 |
|
15 | 10 | "url": "https://leo-coletta.fr"
|
16 | 11 | },
|
17 |
| - "sideEffects": false, |
18 |
| - "repository": "github:leo91000/vue-tiptap-renderer", |
| 12 | + "license": "MIT", |
| 13 | + "funding": "https://github.com/leo91000", |
19 | 14 | "homepage": "https://github.com/leo91000/vue-tiptap-renderer#readme",
|
| 15 | + "repository": "github:leo91000/vue-tiptap-renderer", |
20 | 16 | "bugs": "https://github.com/leo91000/vue-tiptap-renderer/issues",
|
21 |
| - "funding": "https://github.com/leo91000", |
22 |
| - "main": "dist/index.cjs", |
23 |
| - "module": "dist/index.mjs", |
24 |
| - "types": "dist/index.d.ts", |
| 17 | + "keywords": [ |
| 18 | + "tiptap", |
| 19 | + "json", |
| 20 | + "vue", |
| 21 | + "render", |
| 22 | + "function" |
| 23 | + ], |
| 24 | + "sideEffects": false, |
25 | 25 | "exports": {
|
26 | 26 | ".": {
|
27 | 27 | "import": "./dist/index.mjs",
|
28 | 28 | "require": "./dist/index.cjs"
|
29 | 29 | }
|
30 | 30 | },
|
| 31 | + "main": "dist/index.cjs", |
| 32 | + "module": "dist/index.mjs", |
| 33 | + "types": "dist/index.d.ts", |
31 | 34 | "files": [
|
32 | 35 | "dist"
|
33 | 36 | ],
|
34 | 37 | "scripts": {
|
35 | 38 | "build": "unbuild",
|
36 | 39 | "dev": "vitest",
|
37 |
| - "lint": "eslint --ext .ts .", |
| 40 | + "lint": "eslint .", |
| 41 | + "lint:fix": "eslint . --fix", |
| 42 | + "typecheck": "tsc --noEmit", |
38 | 43 | "prepack": "nr build",
|
39 | 44 | "release": "nr test && standard-version && git push --follow-tags && pnpm publish",
|
40 |
| - "test": "nr lint && vitest run" |
| 45 | + "test": "nr lint && nr typecheck && vitest run" |
41 | 46 | },
|
42 |
| - "version": "0.2.2", |
43 |
| - "packageManager": "[email protected]", |
44 | 47 | "volta": {
|
45 | 48 | "node": "18.12.1",
|
46 | 49 | "npm": "9.2.0"
|
47 | 50 | },
|
48 |
| - "dependencies": { |
49 |
| - "vue-demi": "*" |
50 |
| - }, |
51 |
| - "devDependencies": { |
52 |
| - "@antfu/eslint-config": "0.33.1", |
53 |
| - "@antfu/ni": "0.18.8", |
54 |
| - "@vue/test-utils": "2.2.6", |
55 |
| - "@vitest/coverage-c8": "0.25.7", |
56 |
| - "eslint": "8.29.0", |
57 |
| - "jsdom": "^21.0.0", |
58 |
| - "standard-version": "9.5.0", |
59 |
| - "typescript": "5.0.2", |
60 |
| - "unbuild": "1.0.2", |
61 |
| - "vitest": "0.25.7", |
62 |
| - "vue": "3.2.45" |
63 |
| - }, |
64 | 51 | "peerDependencies": {
|
65 | 52 | "@vue/composition-api": "^1.0.0-rc.1",
|
66 | 53 | "vue": "^2.0.0 || >=3.0.0"
|
67 | 54 | },
|
68 | 55 | "peerDependenciesMeta": {
|
69 | 56 | "@vue/composition-api": {
|
70 | 57 | "optional": true
|
71 |
| - }, |
72 |
| - "vue": { |
73 |
| - "optional": true |
74 | 58 | }
|
| 59 | + }, |
| 60 | + "dependencies": { |
| 61 | + "@tiptap/core": "^2.1.13", |
| 62 | + "vue-demi": "^0.14.6" |
| 63 | + }, |
| 64 | + "devDependencies": { |
| 65 | + "@antfu/eslint-config": "^2.4.2", |
| 66 | + "@antfu/ni": "^0.21.12", |
| 67 | + "@vitest/coverage-v8": "^1.0.2", |
| 68 | + "@vue/test-utils": "^2.4.3", |
| 69 | + "eslint": "^8.55.0", |
| 70 | + "jsdom": "^23.0.1", |
| 71 | + "rollup": "^4.6.1", |
| 72 | + "standard-version": "^9.5.0", |
| 73 | + "typescript": "^5.3.3", |
| 74 | + "unbuild": "^2.0.0", |
| 75 | + "vitest": "^1.0.2", |
| 76 | + "vue": "^3.3.10" |
75 | 77 | }
|
76 | 78 | }
|
0 commit comments