-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.27 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 2.27 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "firebase-tools-cli",
"version": "6.0.0",
"files": [
"dist/**/*",
"README.md",
"LICENSE"
],
"description": "CLI tool for Firebase to manage Firestore, Remote Config, and Realtime Database",
"main": "dist/index.js",
"bin": {
"firebase-tools-cli": "./dist/index.js"
},
"scripts": {
"clean": "node -e \"fs.rmSync('dist', { recursive: true, force: true });\"",
"build": "tsc --noEmit && node esbuild.config.js && chmod +x dist/index.js",
"build:watch": "npm run build && tsc --watch",
"build:analyze": "NODE_ENV=development npm run build",
"start": "npm run build && node dist/index.js",
"dev": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"format": "prettier --write \"src/**/*.{ts,js,json}\"",
"format:check": "prettier --check \"src/**/*.{ts,js,json}\"",
"release": "chmod +x ./scripts/release.sh && ./scripts/release.sh",
"check:types": "tsc --noEmit",
"prepublishOnly": "npm run build",
"prepare": "npm run clean && npm run build",
"postinstall": "npm shrinkwrap && test -f dist/index.js && chmod +x dist/index.js || true"
},
"keywords": [
"firestore",
"firebase",
"cli",
"database",
"export",
"import",
"backup",
"cdn",
"ssl",
"cloud",
"websockets",
"synchronization"
],
"author": "Omer Ayhan <https://github.com/omer-ayhan>",
"license": "MIT",
"dependencies": {
"chalk": "^4.1.2",
"commander": "^11.0.0",
"esbuild": "^0.25.5",
"express": "^4.18.2",
"firebase-admin": "^12.0.0",
"google-auth-library": "^9.0.0",
"inquirer": "^8.2.6",
"open": "^8.4.2"
},
"engines": {
"node": ">=18.0.0",
"bun": ">=1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/omer-ayhan/firebase-tools-cli.git"
},
"bugs": {
"url": "https://github.com/omer-ayhan/firebase-tools-cli/issues"
},
"homepage": "https://github.com/omer-ayhan/firebase-tools-cli#readme",
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/express": "^4.17.21",
"@types/inquirer": "^8.2.10",
"@types/node": "^20.11.0",
"prettier": "^2.8.8",
"typescript": "^5.8.3"
}
}