-
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) · 1.97 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 1.97 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": "@cardor/rn-firebase-cli",
"version": "0.4.2",
"description": "CLI interactivo para setup automatizado de Firebase en proyectos React Native (Expo y Bare)",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"rn-firebase": "./bin/rfc.js"
},
"files": [
"bin",
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=22.5.0"
},
"author": "Enmanuel Mag <enmanuelmag@cardor.dev>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/enmanuelmag/rn-firebase-cli"
},
"keywords": [
"react-native",
"firebase",
"cli",
"expo",
"setup",
"google-services",
"firebase-tools"
],
"peerDependencies": {
"firebase-tools": ">=13"
},
"dependencies": {
"chalk": "^5.0.0",
"commander": "^12.1.0",
"dotenv": "^16.6.1",
"execa": "^9.0.0",
"fs-extra": "^11.0.0",
"inquirer": "^10.0.0",
"ora": "^8.0.0"
},
"devDependencies": {
"@cardor/agent-harness-kit": "^1.8.1",
"@commitlint/cli": "^21.0.2",
"@commitlint/config-conventional": "^21.0.2",
"@types/fs-extra": "^11",
"@types/inquirer": "^9",
"@types/node": "^22",
"eslint": "^10.4.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-simple-import-sort": "^13.0.0",
"husky": "^9.1.7",
"prettier": "^3.8.4",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.5.0",
"typescript-eslint": "^8.61.0"
},
"scripts": {
"build": "tsup && pnpm typecheck",
"dev": "tsx src/cli.ts",
"test": "node --test --test-concurrency=1 --import tsx/esm src/tests/*.test.ts",
"typecheck": "tsc --noEmit",
"lint": "eslint . --fix && pnpm format",
"format": "prettier --write src scripts",
"prepublishOnly": "pnpm build && pnpm test",
"link-local": "bash scripts/link-local.sh",
"prepare": "husky",
"release": "bash scripts/publish.sh"
}
}