-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.89 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
{
"name": "@mirus/tiptap-editor",
"version": "3.0.3",
"description": "custom setup for the tiptap editor",
"repository": "https://github.com/mirusresearch/tiptap-editor",
"type": "module",
"bugs": {
"url": "https://github.com/mirusresearch/tiptap-editor"
},
"homepage": "https://github.com/mirusresearch/tiptap-editor",
"author": "alec@mirusresearch.com",
"license": "MIT",
"main": "dist/tiptap-editor.js",
"browser": {
"./sfc": "src/tiptap-editor.vue"
},
"files": ["dist/*", "src/*", "public/*", "*.json", "*.js"],
"exports": {
".": {
"import": "./dist/tiptap-editor.js",
"require": "./dist/tiptap-editor.umd.cjs"
}
},
"scripts": {
"serve": "vite",
"build": "vite build",
"preview": "vite preview",
"format": "prettier --write \"src\" \"test\"",
"validate:format": "prettier --check \"src\" \"test\"",
"test": "vitest run",
"test:watch": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@tiptap/core": "2.6.6",
"@tiptap/extension-bold": "2.6.6",
"@tiptap/extension-bullet-list": "2.6.6",
"@tiptap/extension-character-count": "2.6.6",
"@tiptap/extension-document": "2.6.6",
"@tiptap/extension-history": "2.6.6",
"@tiptap/extension-italic": "2.6.6",
"@tiptap/extension-list-item": "2.6.6",
"@tiptap/extension-paragraph": "2.6.6",
"@tiptap/extension-placeholder": "2.6.6",
"@tiptap/extension-text": "2.6.6",
"@tiptap/pm": "2.6.6",
"@tiptap/vue-3": "2.6.6",
"@vitest/coverage-v8": "0.32.2",
"@vue/test-utils": "2.4.6",
"eslint": "5.15.3",
"flush-promises": "1.0.2",
"happy-dom": "9.20.3",
"lodash.get": "4.4.2",
"lodash.unescape": "4.0.1",
"prettier": "2.8.8",
"sass": "1.60.0",
"tippy.js": "6.3.7",
"vite": "5.3.1",
"vitest": "1.6.0",
"vue": "3.4.30"
},
"browserslist": ["> 1%", "last 2 versions", "ie >= 9"],
"dependencies": {
"@vitejs/plugin-vue": "~5.0.5",
"vite-plugin-css-injected-by-js": "~3.5.1"
}
}