-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.48 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
74
{
"name": "@aptuitiv/gmaps",
"version": "0.16.0",
"description": "Library to help with displaying a Google map on a website with markers, overlays, tooltips, and other map elements.",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.esm.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.esm.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"engines": {
"node": ">=17.0.0"
},
"scripts": {
"build": "tsup",
"css": "postcss ./site-src/css-src/main.css -o ./site-src/css/main.css",
"css-watch": "postcss --watch ./site-src/css-src/main.css -o ./site-src/css/main.css",
"lint": "eslint --fix --ext .js,.ts ./src",
"site-build": "eleventy",
"site-serve": "eleventy --serve --incremental",
"test": "echo \"Error: no test specified\" && exit 1",
"typescriptTest": "tsc --traceResolution",
"watch": "tsup --watch",
"watch-all": "npm run watch & npm run css-watch & npm run site-serve"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aptuitiv/gmaps.git"
},
"author": "Aptuitiv, Inc",
"license": "MIT",
"bugs": {
"url": "https://github.com/aptuitiv/gmaps/issues"
},
"homepage": "https://github.com/aptuitiv/gmaps#readme",
"devDependencies": {
"@11ty/eleventy": "^2.0.1",
"@types/google.maps": "^3.58.0",
"@typescript-eslint/eslint-plugin": "^6.19.0",
"@typescript-eslint/parser": "^6.19.0",
"autoprefixer": "^10.4.20",
"cacao-css": "^4.3.0",
"chalk": "^5.3.0",
"cssnano": "^6.0.3",
"dotenv": "^16.4.5",
"esbuild-plugin-eslint": "^0.3.12",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jsdoc": "^48.0.4",
"log-symbols": "^7.0.0",
"postcss": "^8.4.47",
"postcss-cli": "^11.0.0",
"postcss-custom-media": "^11.0.1",
"postcss-import": "^16.1.0",
"ts-node": "^10.9.2",
"tsup": "^8.3.0",
"typescript": "^5.3.3"
},
"dependencies": {
"@googlemaps/js-api-loader": "^1.16.8",
"@googlemaps/markerclusterer": "^2.5.3"
}
}