-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
73 lines (73 loc) · 2.16 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
{
"name": "@map-component/vue-tmap",
"version": "1.0.1",
"description": "基于腾讯地图 JavaScript API GL、TypeScript 封装适用于 Vue3 的高性能地图组件库",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/didi/vue-tmap.git"
},
"bugs": {
"url": "https://github.com/didi/vue-tmap/issues"
},
"homepage": "https://didi.github.io/vue-tmap/",
"main": "dist/index.js",
"module": "dist/index.js",
"keywords": [
"map",
"tmap",
"qqmap",
"vue map",
"map component"
],
"scripts": {
"dev": "vitepress dev docs",
"prebuild": "tsc -b buildconfig.json",
"build": "npm run prebuild && vite build --config vite.config.js",
"release": "npm run build && npm publish",
"test:unit": "vue-cli-service test:unit",
"lint": "vue-cli-service lint",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs --port 8080",
"docs:deploy": "gh-pages -d docs/.vitepress/dist",
"deploy": "npm run docs:build && npm run docs:deploy"
},
"files": [
"dist"
],
"dependencies": {
"core-js": "^3.22.4"
},
"devDependencies": {
"@map-component/tmap-types": "^0.1.1",
"@types/chai": "^4.2.11",
"@types/mocha": "^5.2.4",
"@typescript-eslint/eslint-plugin": "^2.33.0",
"@typescript-eslint/parser": "^2.33.0",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-typescript": "^5.0.4",
"@vue/cli-plugin-unit-mocha": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.2.33",
"@vue/eslint-config-airbnb": "^5.0.2",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^2.0.0-0",
"chai": "^4.1.2",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^7.0.0-0",
"gh-pages": "^3.2.3",
"prettier": "^1.19.1",
"sass": "^1.26.5",
"sass-loader": "^8.0.2",
"typescript": "^4.6.4",
"vite": "^2.9.8",
"vite-plugin-dts": "^1.5.0",
"vitepress": "^0.22.4",
"vue": "^3.1.0"
}
}