-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
66 lines (66 loc) · 1.79 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
{
"name": "google-map-ts-vue3",
"version": "1.2.1",
"description": "Google Map Vue3 Component",
"repository": {
"type": "git",
"url": "git+https://github.com/seijikohara/google-map-ts-vue3.git"
},
"keywords": [
"google",
"maps",
"vue3",
"typescript"
],
"author": "Seiji Kohara <[email protected]> (https://github.com/seijikohara)",
"license": "MIT",
"bugs": {
"url": "https://github.com/seijikohara/google-map-ts-vue3/issues"
},
"homepage": "https://github.com/seijikohara/google-map-ts-vue3#readme",
"type": "module",
"main": "./dist/google-map-ts-vue3.umd.js",
"module": "./dist/google-map-ts-vue3.es.js",
"files": [
"dist"
],
"exports": {
".": {
"import": {
"types": "./dist/src/components/index.d.ts",
"default": "./dist/google-map-ts-vue3.es.js"
},
"require": "./dist/google-map-ts-vue3.umd.js"
}
},
"types": "./dist/src/components/index.d.ts",
"scripts": {
"dev": "vite",
"build": "vite build && vue-tsc --emitDeclarationOnly",
"preview": "vite preview",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore",
"format": "prettier --write src/"
},
"dependencies": {
"@types/google.maps": "^3.55.9"
},
"devDependencies": {
"@rushstack/eslint-patch": "^1.10.3",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^20.14.2",
"@vitejs/plugin-vue": "^5.0.5",
"@vue/eslint-config-prettier": "^9.0.0",
"@vue/eslint-config-typescript": "^13.0.0",
"@vue/tsconfig": "^0.5.1",
"eslint": "^8.57.0",
"eslint-plugin-vue": "^9.26.0",
"npm-run-all2": "^6.2.0",
"prettier": "^3.3.2",
"typescript": "^5.4.5",
"vite": "^5.3.0",
"vue-tsc": "^2.0.21"
},
"peerDependencies": {
"vue": ">=3.2.0"
}
}