-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
113 lines (113 loc) · 3.53 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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "vue-tik",
"version": "1.0.7",
"author": {
"email": "ryxinfrvr@gmail.com",
"name": "Albet Novendo",
"url": "https://github.com/albetnov"
},
"description": "Opinionated Tiptap Vue Wrapper Editor",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/albetnov/vue-tik"
},
"keywords": [
"editor",
"vue",
"vue-editor",
"vue editor",
"tiptap"
],
"private": false,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"test:unit": "vitest",
"build-only": "vite build && vue-tsc --emitDeclarationOnly -p tsconfig.app.json --composite false",
"type-check": "vue-tsc --noEmit -p tsconfig.vitest.json --composite false",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/",
"upload": "pnpm build && pnpm publish"
},
"files": [
"dist"
],
"type": "module",
"main": "./dist/vue-tik.umd.cjs",
"module": "./dist/vue-tik.js",
"types": "./dist/vue-tik.d.ts",
"exports": {
".": {
"import": "./dist/vue-tik.js",
"require": "./dist/vue-tik.umd.cjs"
},
"./dist/style.css": "./dist/style.css"
},
"peerDependencies": {
"vue": "^3.3.4"
},
"dependencies": {
"@headlessui/vue": "^1.7.14",
"@tiptap/core": "^2.0.4",
"@tiptap/extension-blockquote": "^2.0.4",
"@tiptap/extension-bold": "^2.0.4",
"@tiptap/extension-bullet-list": "^2.0.4",
"@tiptap/extension-code": "^2.0.4",
"@tiptap/extension-code-block-lowlight": "^2.0.4",
"@tiptap/extension-color": "^2.0.4",
"@tiptap/extension-document": "^2.0.4",
"@tiptap/extension-heading": "^2.0.4",
"@tiptap/extension-highlight": "^2.0.4",
"@tiptap/extension-history": "^2.0.4",
"@tiptap/extension-horizontal-rule": "^2.0.4",
"@tiptap/extension-image": "^2.0.4",
"@tiptap/extension-italic": "^2.0.4",
"@tiptap/extension-link": "^2.0.4",
"@tiptap/extension-list-item": "^2.0.4",
"@tiptap/extension-ordered-list": "^2.0.4",
"@tiptap/extension-paragraph": "^2.0.4",
"@tiptap/extension-strike": "^2.0.4",
"@tiptap/extension-table": "^2.0.4",
"@tiptap/extension-table-cell": "^2.0.4",
"@tiptap/extension-table-header": "^2.0.4",
"@tiptap/extension-table-row": "^2.0.4",
"@tiptap/extension-task-item": "^2.0.4",
"@tiptap/extension-task-list": "^2.0.4",
"@tiptap/extension-text": "^2.0.4",
"@tiptap/extension-text-align": "^2.0.4",
"@tiptap/extension-text-style": "^2.0.4",
"@tiptap/extension-typography": "^2.0.4",
"@tiptap/extension-underline": "^2.0.4",
"@tiptap/extension-youtube": "^2.0.4",
"@tiptap/pm": "^2.0.4",
"@tiptap/vue-3": "^2.0.4",
"highlight.js": "^11.8.0",
"lowlight": "^2.9.0",
"oh-vue-icons": "1.0.0-rc3"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.3.2",
"@tsconfig/node18": "^2.0.1",
"@types/jsdom": "^21.1.1",
"@types/node": "^18.16.19",
"@unocss/transformer-directives": "^0.53.5",
"@vitejs/plugin-vue": "^4.2.3",
"@vue/eslint-config-prettier": "^7.1.0",
"@vue/eslint-config-typescript": "^11.0.3",
"@vue/test-utils": "^2.4.0",
"@vue/tsconfig": "^0.4.0",
"eslint": "^8.45.0",
"eslint-plugin-vue": "^9.15.1",
"jsdom": "^22.1.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"typescript": "~5.0.4",
"unocss": "^0.53.5",
"unocss-preset-scrollbar": "^0.2.1",
"vite": "^4.4.4",
"vitest": "^0.32.4",
"vue-tsc": "^1.8.5"
}
}