-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 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
43
44
45
46
47
48
49
{
"name": "firestore-db-orm",
"description": "ORM for the database in Firestore",
"version": "1.5.2",
"module": "dist/index.mjs",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/"
],
"engines": {
"node": "20"
},
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts",
"lint": "tsc",
"format": "prettier ./ --write"
},
"dependencies": {
"firebase-admin": "^12.7.0",
"uuid": "^10.0.0"
},
"devDependencies": {
"@types/uuid": "^9.0.8",
"prettier": "3.3.2",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"keywords": [
"firebase",
"firestore",
"firestore db",
"firebase orm",
"firebase orm db"
],
"author": {
"name": "CarmeloCampos",
"email": "hola@carmelocampos.com"
},
"homepage": "https://github.com/CarmeloCampos/firestore-db-orm#readme",
"license": "MPL-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/CarmeloCampos/firestore-db-orm.git"
},
"publishConfig": {
"provenance": true
}
}