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