-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
47 lines (47 loc) · 1 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
{
"name": "vite-plugin-firebase",
"version": "0.6.1",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"license": "MIT",
"author": "gluck",
"files": [
"dist"
],
"keywords": [
"vite",
"vite-plugin"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"release": "npm install && npm run build && npm publish"
},
"engines": {
"node": ">=12.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gluck/vite-plugin-firebase.git"
},
"bugs": {
"url": "https://github.com/gluck/vite-plugin-firebase/issues"
},
"homepage": "https://github.com/gluck/vite-plugin-firebase",
"devDependencies": {
"@types/node": "^17.0.21",
"tsup": "^5.7.1",
"typescript": "^4.4.4",
"vite": "^2.0.2"
},
"dependencies": {
"firebase-tools": "^13.14.2"
},
"peerDependencies": {
"vite": "^2.0.2"
}
}