-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
111 lines (111 loc) · 3.06 KB
/
Copy pathpackage.json
File metadata and controls
111 lines (111 loc) · 3.06 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "@hummer98/firex",
"version": "0.9.2",
"description": "Firebase Firestore CLI tool for command-line operations - Read, write, query, and manage Firestore data from your terminal",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "module",
"bin": {
"firex": "bin/run.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest --run",
"test:coverage": "vitest --coverage",
"test:integration": "FIRESTORE_EMULATOR_HOST=localhost:8080 vitest --run src/integration/",
"test:e2e": "FIRESTORE_EMULATOR_HOST=localhost:8080 vitest --run src/e2e/",
"test:perf": "FIRESTORE_EMULATOR_HOST=localhost:8080 vitest --run src/performance/",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"lint:fix": "eslint src --ext .ts --fix",
"prepare": "npm run build",
"prepublishOnly": "npm run test && npm run build",
"sync:plugin-version": "node scripts/sync-plugin-version.mjs",
"version": "npm run sync:plugin-version && git add .claude-plugin/plugin.json .claude-plugin/marketplace.json && npm run build",
"postversion": "git push && git push --tags",
"release:patch": "npm version patch",
"release:minor": "npm version minor",
"release:major": "npm version major",
"emulator:start": "firebase emulators:start --only firestore",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"firebase",
"firestore",
"cli",
"database",
"command-line",
"nosql",
"google-cloud",
"firebase-admin",
"data-management",
"crud",
"query",
"export",
"import",
"backup",
"realtime"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/hummer98/firex.git"
},
"bugs": {
"url": "https://github.com/hummer98/firex/issues"
},
"homepage": "https://github.com/hummer98/firex#readme",
"directories": {
"doc": "docs"
},
"files": [
"dist",
"bin",
"README.md",
"LICENSE",
"CHANGELOG.md"
],
"oclif": {
"bin": "firex",
"dirname": "firex",
"commands": "./dist/commands",
"topicSeparator": " "
},
"dependencies": {
"@date-fns/tz": "^1.4.1",
"@inquirer/prompts": "^7.10.1",
"@modelcontextprotocol/sdk": "^1.25.1",
"@oclif/core": "^3.27.0",
"@toon-format/toon": "^2.1.0",
"cli-table3": "^0.6.5",
"cosmiconfig": "^9.0.0",
"date-fns": "^4.1.0",
"firebase-admin": "^13.6.0",
"js-yaml": "^4.1.1",
"neverthrow": "^7.2.0",
"oclif": "^4.17.0",
"yaml": "^2.8.2",
"zod": "^4.2.1"
},
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.19.27",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@vitest/coverage-v8": "^4.0.15",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^8.57.1",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^4.0.15"
}
}