-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 923 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 923 Bytes
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
{
"name": "@dinakars777/create-nexus",
"version": "2.0.0",
"description": "Scaffold the ultimate Agent-Native Boilerplate. Next.js, Hono, Drizzle, Zod, with built-in .agent control plane.",
"main": "dist/index.js",
"type": "module",
"bin": {
"create-nexus": "dist/index.js",
"create-nexus-app": "dist/index.js"
},
"scripts": {
"dev": "tsup watch",
"build": "tsup src/index.ts --format esm --clean"
},
"keywords": [
"ai",
"agent",
"boilerplate",
"nextjs",
"hono",
"drizzle"
],
"author": "Dinakar Sarbada",
"license": "MIT",
"files": [
"dist"
],
"dependencies": {
"@clack/prompts": "^0.7.0",
"commander": "^11.1.0",
"execa": "^8.0.1",
"fs-extra": "^11.2.0",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.0",
"tsup": "^8.0.0",
"typescript": "^5.3.2"
}
}