-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
53 lines (53 loc) · 1.45 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
50
51
52
53
{
"name": "node-firestore",
"version": "2.0.1",
"description": "Using Firestore made easier!",
"keywords": [
"easy-db",
"easy",
"firebase",
"firestore",
"node-firestore",
"useful",
"node",
"nodejs"
],
"files": [
"lib"
],
"types": "lib/types/index.d.ts",
"exports": {
".": {
"import": "./lib/mjs/index.js",
"require": "./lib/cjs/index.js"
}
},
"homepage": "https://github.com/MDxWARRIORxOP/node-firestore#readme",
"bugs": {
"url": "https://github.com/MDxWARRIORxOP/node-firestore/issues",
"email": "[email protected]"
},
"license": "MIT",
"author": "MDxWARRIORxOP <[email protected]>",
"main": "lib/cjs/index.js",
"module": "lib/mjs/index.js",
"repository": {
"type": "git",
"url": "https://github.com/MDxWARRIORxOP/node-firestore.git"
},
"scripts": {
"build": "bash ./build",
"prepublishOnly": "yarn build",
"typedoc": "rm -rf docs && typedoc --plugin typedoc-plugin-extras --plugin @mxssfd/typedoc-theme --entryPointStrategy expand src/ --out docs --tsconfig tsconfig.json --theme my-theme --name Anime-Search-Docs --customTitle Anime-Search-Docs --footerLastModified true"
},
"packageManager": "[email protected]",
"devDependencies": {
"typedoc": "^0.24.8",
"typescript": "^5.1.6"
},
"dependencies": {
"@mxssfd/typedoc-theme": "^1.1.2",
"firebase-admin": "^11.10.1",
"typedoc-plugin-extras": "^2.3.3"
}
}