-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
41 lines (41 loc) · 1.03 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
{
"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"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arkadiuszwojcik/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"
},
"dependencies": {
"tslib": "^2.0.0",
"lit": "^2.0.0"
},
"devDependencies": {
"@types/google.maps": "^3.47.4",
"typescript": "^4.5.5",
"rollup": "^2.67.3",
"@rollup/plugin-node-resolve": "^13.1.3",
"rollup-plugin-terser": "^7.0.2"
}
}