forked from arkadiuszwojcik/lit-google-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.13 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
{
"name": "lit-google-map",
"version": "1.0.1",
"description": "Google Maps web components based on Lit v2",
"private": false,
"license": "MIT",
"author": {
"name": "Arkadiusz Wójcik",
"url": "http://github.com/arkadiuszwojcik"
},
"collaborators": {
"name": "Dennis Falling",
"url": "http://github.com/dfalling"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dfalling/lit-google-map.git"
},
"keywords": [
"map",
"maps",
"component",
"web component",
"lit",
"google"
],
"main": "dist/lit-google-map.bundle.min.js",
"module": "dist/lit-google-map.esm.min.js",
"typings": "*.d.ts",
"scripts": {
"build": "tsc",
"bundle": "npm run build && rollup -c",
"lint": "npx @biomejs/biome check src",
"format": "npx @biomejs/biome check --apply src"
},
"dependencies": {
"lit": "^3.1.3",
"tslib": "^2.5.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@rollup/plugin-node-resolve": "^16.0.0",
"@types/google.maps": "^3.55.8",
"rollup": "^2.79.1",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.4.5"
}
}