-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.74 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 1.74 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
{
"name": "@dharayush7/fireclass-cli",
"version": "2.1.17",
"description": "Framework-aware CLI for configuring Fireclass in Next.js, React, and Express: Firebase setup, model generation, diagnostics, and project config.",
"license": "MIT",
"author": {
"name": "Ayush Dhar",
"email": "contact@ayushdhar.com",
"url": "https://www.ayushdhar.com"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dharayush7/fireclass-cli.git"
},
"homepage": "https://fireclass.ayushdhar.com/docs/cli",
"bugs": {
"url": "https://github.com/dharayush7/fireclass-cli/issues"
},
"keywords": [
"fireclass",
"fireclass-cli",
"firestore",
"firebase",
"cli",
"command-line",
"scaffold",
"scaffolding",
"generator",
"codegen",
"model-generator",
"project-setup",
"firebase-tools",
"developer-tools",
"doctor",
"init",
"nextjs",
"next-js",
"react",
"express",
"nodejs",
"orm",
"firestore-orm",
"typescript",
"npx",
"npm"
],
"type": "module",
"bin": {
"fireclass": "./dist/index.js",
"fc": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"CHANGELOG.md",
"RELEASE_NOTES.md",
"LICENSE"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run typecheck && npm run test && npm run build"
},
"dependencies": {
"@clack/prompts": "^0.9.1",
"commander": "^12.1.0"
},
"devDependencies": {
"@types/node": "^24.13.3",
"tsup": "^8.5.1",
"typescript": "^5.9.3",
"vitest": "^2.1.9"
},
"engines": {
"node": ">=18"
},
"publishConfig": {
"access": "public"
}
}