-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.98 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.98 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
78
{
"name": "location-picker",
"version": "2.0.0",
"description": "An open source location picker plugin using Google Maps v3 that works with all JavaScript flavors!",
"keywords": [
"locationpicker",
"location-picker",
"google-maps",
"google-maps-api",
"map",
"marker",
"geolocation",
"javascript",
"javascript-plugin",
"typescript",
"esm"
],
"homepage": "https://github.com/cyphercodes/location-picker#readme",
"bugs": {
"url": "https://github.com/cyphercodes/location-picker/issues"
},
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
},
"./style.css": "./dist/location-picker.css",
"./package.json": "./package.json"
},
"sideEffects": [
"*.css"
],
"files": [
"dist"
],
"author": "Rayan Salhab <rayansalhab@hotmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/cyphercodes/location-picker.git"
},
"license": "MIT",
"engines": {
"node": ">=18"
},
"scripts": {
"clean": "rimraf dist",
"prebuild": "npm run clean",
"build": "rollup -c rollup.config.mjs",
"lint": "eslint .",
"format": "prettier --write \"src/**/*.{ts,css}\" \"*.{json,md,mjs}\"",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.4",
"@rollup/plugin-typescript": "^12.1.2",
"@types/google.maps": "^3.58.1",
"@types/node": "^22.9.0",
"@vitest/coverage-v8": "^2.1.5",
"eslint": "^9.15.0",
"jsdom": "^25.0.1",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"rollup": "^4.27.4",
"rollup-plugin-postcss": "^4.0.2",
"tslib": "^2.8.1",
"typescript": "^5.6.3",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.5"
}
}