-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.05 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.05 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
{
"name": "create-red-app",
"version": "1.0.2",
"description": "Scaffold licensed RED projects — the production-ready SaaS starter kit with Convex, React, and BetterAuth",
"type": "module",
"bin": {
"create-red-app": "dist/cli.mjs"
},
"files": [
"dist",
"LICENSE"
],
"scripts": {
"build": "bun run scripts/build.ts",
"dev": "bun run src/cli.ts",
"test": "bun test",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit",
"prepublishOnly": "bun run build"
},
"keywords": [
"red",
"saas",
"convex",
"react",
"better-auth",
"boilerplate",
"starter-kit",
"create-app"
],
"author": "dev3o",
"license": "MIT",
"homepage": "https://red.dev3o.com",
"repository": {
"type": "git",
"url": "git+https://github.com/agentic-dev3o/red.git"
},
"engines": {
"node": ">=18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.4.11",
"@types/bun": "^1.2.0",
"@types/node": "^22.0.0",
"typescript": "^5.7.0"
}
}