-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
77 lines (77 loc) · 2.17 KB
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
74
75
76
77
{
"name": "x5-gmaps",
"version": "0.7.6",
"private": false,
"description": "A lightweight Google Maps plugin for Vue 2",
"author": "Keagan Chisnall",
"type": "module",
"scripts": {
"link": "npm link && npm link x5-gmaps",
"dev": "vue-cli-service serve dev/src/main.js",
"prebuild": "rimraf dist",
"build": "cross-env NODE_ENV=production rollup -c",
"postbuild": "tsc --emitDeclarationOnly"
},
"main": "dist/x5-gmaps.ssr.js",
"browser": "dist/x5-gmaps.esm.js",
"module": "dist/x5-gmaps.esm.js",
"unpkg": "dist/x5-gmaps.min.js",
"types": "./dist/entry.esm.d.ts",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.22.9",
"@babel/eslint-parser": "^7.22.9",
"@babel/plugin-proposal-decorators": "^7.22.7",
"@babel/preset-env": "^7.22.9",
"@babel/preset-typescript": "^7.22.5",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-replace": "^5.0.2",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.2",
"@typescript-eslint/eslint-plugin": "^6.8.0",
"@typescript-eslint/parser": "^6.8.0",
"@vue/cli-plugin-babel": "^5.0.8",
"@vue/cli-plugin-eslint": "^5.0.8",
"@vue/cli-plugin-typescript": "^5.0.8",
"@vue/cli-service": "^5.0.8",
"cross-env": "^7.0.3",
"eslint": "^8.46.0",
"eslint-plugin-vue": "^9.16.1",
"minimist": "^1.2.8",
"node-sass": "^9.0.0",
"rollup": "^3.27.2",
"rollup-plugin-scss": "^4.0.0",
"rollup-plugin-vue": "^5.1.9",
"sass-loader": "^13.3.2",
"typescript": "^5.1.6",
"webpack": "^5.88.2"
},
"peerDependencies": {
"vue": "^2.7.14"
},
"dependencies": {
"@types/geojson": "^7946.0.10",
"@types/google.maps": "^3.53.6",
"vue-property-decorator": "^9.1.2"
},
"bugs": {
"url": "https://github.com/xon52/x5-gmaps/issues"
},
"homepage": "https://github.com/xon52/x5-gmaps#readme",
"keywords": [
"vue",
"plugin",
"map",
"google"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/xon52/x5-gmaps.git"
}
}