-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
101 lines (101 loc) · 2.52 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
{
"name": "gutentap",
"version": "0.1.90",
"private": false,
"type": "module",
"files": [
"lib",
"dist",
"tailwind.config.cjs"
],
"main": "./lib/guten-tap.umd.cjs",
"module": "./lib/guten-tap.js",
"exports": {
".": {
"import": "./lib/guten-tap.js",
"require": "./lib/guten-tap.umd.cjs"
},
"./style.css": {
"import": "./lib/style.css",
"require": "./lib/style.css"
}
},
"scripts": {
"serve": "npx vite",
"build": "npx vite build && npx vite build -c vite.demo.config.js",
"build:lib": "npx vite build",
"build:demo": "npx vite build -c vite.demo.config.js"
},
"dependencies": {
"@babel/eslint-parser": "^7.24.5",
"@justinribeiro/lite-youtube": "^1.5.0",
"@tiptap/extension-blockquote": "^2.4.0",
"@tiptap/extension-bubble-menu": "^2.4.0",
"@tiptap/extension-highlight": "^2.4.0",
"@tiptap/extension-link": "^2.4.0",
"@tiptap/extension-placeholder": "^2.4.0",
"@tiptap/extension-subscript": "^2.4.0",
"@tiptap/extension-superscript": "^2.4.0",
"@tiptap/extension-table": "^2.4.0",
"@tiptap/extension-table-cell": "^2.4.0",
"@tiptap/extension-table-header": "^2.4.0",
"@tiptap/extension-table-row": "^2.4.0",
"@tiptap/extension-text-align": "^2.4.0",
"@tiptap/extension-youtube": "^2.4.0",
"@tiptap/pm": "^2.4.0",
"@tiptap/starter-kit": "^2.4.0",
"@tiptap/suggestion": "^2.4.0",
"@tiptap/vue-3": "^2.4.0",
"@vitejs/plugin-vue": "^4.2.3",
"core-js": "^3.8.3",
"sass-loader": "^13.1.0",
"tippy.js": "^6.3.7",
"vite": "^4.3.9",
"vue": "^3.2.40",
"vue-inline-svg": "^3.1.2"
},
"devDependencies": {
"@babel/core": "^7.12.16",
"@tailwindcss/typography": "^0.5.7",
"@typescript-eslint/parser": "^7.5.0",
"@vue/cli-plugin-babel": "~5.0.0",
"@vue/cli-plugin-eslint": "~5.0.0",
"@vue/cli-service": "~5.0.0",
"autoprefixer": "^10.4.12",
"eslint": "^8.56.0",
"eslint-plugin-vue": "^8.0.3",
"postcss": "^8.4.17",
"tailwindcss": "^3.1.8"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/vue3-essential",
"eslint:recommended"
],
"parserOptions": {
"parser": "@typescript-eslint/parser"
},
"rules": {}
},
"eslintIgnore": [
"dist",
"node_modules",
"lib"
],
"browserslist": [
"> 1%",
"last 2 versions",
"not dead",
"not ie 11"
],
"postcss": {
"plugins": {
"tailwindcss": {},
"autoprefixer": {}
}
}
}