-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
52 lines (52 loc) · 1.26 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
{
"name": "vue-blockful-editor",
"private": false,
"license": "MIT",
"version": "0.3.2",
"type": "module",
"files": [
"dist"
],
"module": "./dist/index.es.js",
"main": "./dist/index.cjs.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.es.js",
"require": "./dist/index.cjs.js",
"types": "./dist/index.d.ts"
},
"./blocks": {
"types": "./dist/blocks.d.ts"
},
"./style.css": "./dist/style.css",
"./style-mixin.scss": "./dist/style-mixin.scss"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"postbuild": "node ./scripts/post-build.mjs",
"preview": "vite preview",
"format": "prettier --write ."
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.2.1",
"@tiptap/starter-kit": "^2.0.0-beta.218",
"@tiptap/vue-3": "^2.0.0-beta.218",
"mitt": "^3.0.0",
"vue": "^3.2.45"
},
"devDependencies": {
"@vitejs/plugin-vue": "^4.0.0",
"autoprefixer": "^10.4.13",
"express": "^4.18.2",
"express-fileupload": "^1.4.0",
"postcss": "^8.4.21",
"prettier": "^2.8.4",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3",
"vite": "^4.4.9",
"vite-plugin-dts": "^3.6.0",
"vue-tsc": "^1.0.11"
}
}