-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
53 lines (53 loc) · 1.04 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
{
"name": "create-stack-next",
"version": "0.7.2",
"description": "Scaffolder opinado para proyectos Next.js 15 con TypeScript estricto, Biome, Vitest, Playwright y AI agent config preinstalado.",
"type": "module",
"bin": {
"create-stack-next": "dist/index.js"
},
"files": [
"dist",
"template",
"template-api"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node ./dist/index.js",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",
"prepublishOnly": "npm run build"
},
"engines": {
"node": ">=20.0.0"
},
"keywords": [
"create-stack-next",
"scaffolder",
"next.js",
"nextjs",
"typescript",
"biome",
"vitest",
"playwright",
"ai-agent"
],
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.9.0",
"picocolors": "^1.1.0"
},
"devDependencies": {
"@biomejs/biome": "^2.5.0",
"@types/node": "^22.0.0",
"typescript": "^7.0.0",
"vitest": "^4.0.0"
},
"publishConfig": {
"access": "public"
}
}