-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.95 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.95 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
{
"name": "archetype-engine",
"version": "2.3.4",
"description": "Type-safe backend generator for Next.js. Define entities once, get Drizzle schemas, tRPC APIs, Zod validation, and React hooks instantly.",
"main": "dist/src/index.js",
"types": "dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js",
"require": "./dist/src/index.js"
},
"./ai": {
"types": "./dist/src/ai/index.d.ts",
"import": "./dist/src/ai/index.js",
"require": "./dist/src/ai/index.js"
}
},
"bin": {
"archetype": "dist/src/cli.js",
"archetype-mcp": "dist/src/mcp-server.js"
},
"files": [
"dist",
"README.md"
],
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"build": "tsc",
"prepublishOnly": "npm run build",
"test": "vitest",
"test:run": "vitest run",
"init": "node dist/src/cli.js init",
"generate": "node dist/src/cli.js generate"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"puppeteer": "^24.34.0",
"ts-node": "^10.9.2",
"zod": "^3.23.0"
},
"devDependencies": {
"@types/node": "^22.5.5",
"typedoc": "^0.28.15",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"keywords": [
"nextjs",
"backend-generator",
"code-generation",
"drizzle",
"trpc",
"zod",
"react-query",
"type-safe",
"crud",
"api-generator",
"typescript",
"fullstack",
"scaffolding",
"boilerplate",
"v0",
"cursor",
"ai-backend",
"prisma-alternative",
"orm",
"schema-first",
"declarative",
"entity-framework"
],
"author": "IFAKA",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/IFAKA/archetype-engine.git"
},
"bugs": {
"url": "https://github.com/IFAKA/archetype-engine/issues"
},
"homepage": "https://archetype-engine.vercel.app"
}