-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
42 lines (42 loc) · 1.04 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
{
"version": "0.0.0",
"main": "dist/my-element.es.js",
"exports": {
".": "./dist/my-element.es.js"
},
"types": "types/my-element.d.ts",
"files": [
"dist",
"types"
],
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"deploy": "npm run build && gh-pages -d dist"
},
"dependencies": {
"@babel/polyfill": "^7.12.1",
"@material/mwc-dialog": "^0.21.0",
"@material/mwc-drawer": "^0.21.0",
"@material/mwc-icon-button": "^0.21.0",
"@material/mwc-list": "^0.21.0",
"@material/mwc-textfield": "^0.21.0",
"@material/mwc-top-app-bar-fixed": "^0.21.0",
"events": "^3.3.0",
"gh-pages": "^3.2.3",
"lit": "*",
"pouchdb-adapter-idb": "^7.2.2",
"pouchdb-browser": "^7.2.2",
"pouchdb-utils": "^7.2.2",
"rxdb": "^9.21.0",
"rxjs": "^7.2.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^11.2.1",
"@types/node": "^16.0.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"typescript": "^4.3.2",
"vite": "^2.3.8",
"vite-plugin-pwa": "^0.8.1"
}
}