-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
61 lines (61 loc) · 1.32 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
{
"name": "vue-use-places-autocomplete",
"version": "0.2.3",
"packageManager": "[email protected]",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/wobsoriano/vue-use-places-autocomplete.git"
},
"keywords": [
"vue",
"places",
"autocomplete"
],
"sideEffects": false,
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "bunchee",
"lint": "eslint .",
"prepublishOnly": "pnpm build",
"release": "bumpp && npm publish",
"test": "vitest run"
},
"peerDependencies": {
"vue": "^3.2.0"
},
"dependencies": {
"@googlemaps/js-api-loader": "^1.16.8",
"perfect-debounce": "^1.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^2.27.3",
"@types/google.maps": "^3.55.12",
"@types/node": "^20.16.2",
"bumpp": "^9.5.2",
"bunchee": "^5.3.2",
"eslint": "^9.9.1",
"jsdom": "^25.0.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5",
"vue": "^3.4.38",
"vue-test-composables": "^0.1.6"
}
}