-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.31 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.31 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
{
"name": "flame-cli",
"author": "",
"description": "A simple CLI to interact with Firestore databases",
"license": "MIT",
"type": "module",
"version": "0.1.1",
"files": [
"dist"
],
"bin": {
"flame": "dist/cli.js",
"__flame_bash_complete": "dist/bash-complete.js"
},
"engines": {
"node": ">=22"
},
"scripts": {
"prebuild": "tsc -p src/tsconfig.json",
"build": "tsup",
"build:watch": "tsup --watch",
"prepublishOnly": "npm run build",
"prepare": "npm run build && husky",
"format": "prettier . --write",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"tsup": {
"entry": [
"src/bin/cli.ts",
"src/bin/bash-complete.ts"
],
"format": [
"esm"
],
"tsconfig": "src/tsconfig.json",
"clean": true,
"splitting": true,
"minify": true
},
"dependencies": {
"@stricli/auto-complete": "^1.1.2",
"@stricli/core": "^1.1.2",
"chalk": "^5.6.2",
"consola": "^3.4.2",
"firebase-admin": "^13.4.0",
"ora": "^9.1.0",
"strip-ansi": "^7.1.2"
},
"devDependencies": {
"@types/node": "22.x",
"@vitest/coverage-v8": "^4.0.18",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"tsup": "^6.7.0",
"typescript": "5.6.x",
"vitest": "^4.0.18"
}
}