-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
56 lines (56 loc) · 1.58 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
{
"name": "vuejs-medium-editor",
"private": false,
"version": "3.0.2",
"type": "module",
"files": [
"dist"
],
"main": "./dist/vuejs-medium-editor.umd.cjs",
"module": "./dist/vuejs-medium-editor.js",
"exports": {
".": {
"import": "./dist/vuejs-medium-editor.js",
"require": "./dist/vuejs-medium-editor.umd.cjs"
},
"./dist/themes/default.css": "./dist/themes/default.css"
},
"scripts": {
"dev": "vite",
"build": "vue-tsc && vite build",
"preview": "vite preview",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src",
"format": "prettier . --write"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^6.3.0",
"@fortawesome/free-regular-svg-icons": "^6.3.0",
"@fortawesome/free-solid-svg-icons": "^6.3.0",
"@fortawesome/vue-fontawesome": "^3.0.3",
"highlight.js": "^11.7.0",
"medium-editor": "^5.23.3",
"pure-gist-embed": "^1.0.3",
"randomstring": "^1.2.3",
"underscore": "^1.13.6",
"vue": "^3.2.45",
"vue-upload-component": "^3.1.6"
},
"devDependencies": {
"@types/medium-editor": "^5.0.5",
"@types/node": "^18.14.2",
"@types/randomstring": "^1.1.8",
"@types/underscore": "^1.11.4",
"@typescript-eslint/parser": "^5.54.0",
"@vitejs/plugin-vue": "^4.0.0",
"eslint": "^8.35.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-vue": "^9.9.0",
"husky": "^8.0.3",
"lint-staged": "^13.1.2",
"prettier": "^2.8.4",
"typescript": "^4.9.3",
"vite": "^4.1.0",
"vue-eslint-parser": "^9.1.0",
"vue-tsc": "^1.0.24"
}
}