-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 996 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 996 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
{
"name": "create-frontstack",
"version": "0.1.0",
"description": "Scaffold a modern React + TypeScript + Vite frontend repo with Docker, TanStack Router/Query, Zustand, shadcn/ui, agent skills and MCP.",
"license": "MIT",
"author": "Igor Martynov",
"type": "module",
"bin": {
"create-frontstack": "bin/index.js"
},
"files": [
"bin",
"template"
],
"engines": {
"node": ">=22.12.0"
},
"packageManager": "pnpm@11.18.0",
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"check": "pnpm lint && pnpm test"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@vitest/coverage-v8": "^3.0.0",
"eslint": "^9.0.0",
"globals": "^15.0.0",
"prettier": "^3.0.0",
"vitest": "^3.0.0"
}
}