forked from TanStack/cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.46 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.46 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
{
"name": "create-tsrouter-app",
"version": "0.6.8",
"description": "Tanstack Application Builder",
"bin": "./dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "tsc && node dist/index.js",
"test": "npm run test:lint && vitest --run",
"test:watch": "vitest",
"cipublish": "node scripts/publish.js",
"test:lint": "eslint ./src",
"mcp": "tsc && npx @modelcontextprotocol/inspector dist/index.js --mcp"
},
"repository": {
"type": "git",
"url": "https://github.com/TanStack/create-tsrouter-app.git"
},
"homepage": "https://tanstack.com/router",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"react",
"tanstack",
"router",
"create-react-app"
],
"author": "Jack Herrington <jherr@pobox.com>",
"license": "MIT",
"packageManager": "pnpm@9.15.5",
"dependencies": {
"@clack/prompts": "^0.10.0",
"@modelcontextprotocol/sdk": "^1.6.0",
"chalk": "^5.4.1",
"commander": "^13.1.0",
"ejs": "^3.1.10",
"execa": "^9.5.2",
"express": "^4.21.2",
"prettier": "^3.5.0",
"vitest": "^3.0.8",
"zod": "^3.24.2"
},
"devDependencies": {
"@tanstack/config": "^0.16.2",
"@types/ejs": "^3.1.5",
"@types/express": "^5.0.0",
"@types/node": "^22.13.4",
"eslint": "^9.20.0",
"eslint-plugin-react-hooks": "^5.1.0",
"eslint-plugin-unused-imports": "^4.1.4",
"typescript": "^5.6.3"
}
}