-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
57 lines (57 loc) · 1.49 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
{
"name": "tg-blog",
"type": "module",
"version": "1.1.7",
"scripts": {
"dev": "vite",
"serve": "vite",
"build": "rimraf dist && vue-tsc && vite build && UMD=1 vite build",
"build.demo": "rimraf dist && vue-tsc && BUILD_DEMO=1 vite build",
"lint": "eslint --ext .js,.vue --ignore-path .gitignore --fix src"
},
"dependencies": {
"@vue-leaflet/vue-leaflet": "0.8.4",
"element-plus": "^2.2.26",
"js-file-download": "^0.4.12",
"keycode-js": "^3.1.0",
"leaflet": "^1.9.3",
"linkify-urls": "^4.0.0",
"marked": "^4.2.3",
"moment": "^2.29.4",
"plyr": "^3.7.3",
"sanitize-html": "^2.7.3",
"url-join": "^5.0.0",
"vue": "^3.2.33"
},
"devDependencies": {
"@iconify/json": "^2.1.154",
"@types/marked": "^4.0.7",
"@types/node": "^18.11.10",
"@vitejs/plugin-vue": "^4.0.0",
"rimraf": "^5.0.1",
"sass": "^1.50.0",
"typescript": "^5.1.6",
"unplugin-auto-import": "^0.16.4",
"unplugin-icons": "^0.16.3",
"unplugin-vue-components": "^0.25.1",
"vite": "^4.0.3",
"vue": "^3.2.33",
"vue-class-component": "^8.0.0-rc.1",
"vue-property-decorator": "^10.0.0-rc.3",
"vue-tsc": "^1.0.11"
},
"files": [
"src",
"dist"
],
"types": "./dist/types/index.d.ts",
"main": "./dist/tg-blog.umd.js",
"module": "./dist/tg-blog.es.js",
"exports": {
".": {
"import": "./dist/tg-blog.es.js",
"require": "./dist/tg-blog.umd.js"
},
"./dist/style.css": "./dist/style.css"
}
}