-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.73 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
{
"name": "richer-than-rich",
"version": "0.4.3",
"description": "Another modern rich text editor $$. A promising one. 🚧 WIP",
"author": "Antoni Andre <[email protected]>",
"homepage": "https://antoniandre.github.io/richer-than-rich",
"repository": "https://github.com/antoniandre/richer-than-rich",
"license": "MIT",
"funding": "https://github.com/sponsors/antoniandre",
"main": "./dist/richer.umd.js",
"unpkg": "dist/richer.umd.js",
"jsdelivr": "dist/richer.umd.js",
"module": "./dist/richer.es.js",
"files": [
"dist",
"src/richer-than-rich"
],
"exports": {
".": {
"import": "./dist/richer.es.js",
"require": "./dist/richer.cjs.js"
},
"./package.json": "./package.json",
"./dist/*": "./dist/*"
},
"type": "module",
"keywords": [
"wysiwyg vue",
"rich editor vue",
"richer vue",
"rich text editor",
"vue text editor",
"vue3",
"ui"
],
"scripts": {
"dev": "vite",
"build": "vite build --base /richer-than-rich/",
"build-bundle": "BUNDLE=true vite build",
"serve": "vite preview --base /richer-than-rich/",
"publish-doc": "npm run build && git add . && git commit -m 'Publish documentation on Github.' && git push && git push --tag",
"publish-all": "npm run build && npm run build-bundle && git add . && git commit -m 'Publish documentation on Github.' && git push && git push --tag && npm publish"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.1.3",
"autoprefixer": "^10.4.20",
"path": "^0.12.7",
"postcss": "^8.4.42",
"pug": "^3.0.3",
"sass": "^1.77.8",
"simple-syntax-highlighter": "^3.0.8",
"vite": "^5.4.2",
"vue": "^3.4.38"
},
"peerDependencies": {
"vue": "^2.6.14 || ^3.2.0"
}
}