-
-
Notifications
You must be signed in to change notification settings - Fork 168
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.32 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.32 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": "@tanstack/cta-engine",
"version": "0.47.0",
"description": "Tanstack Application Builder Engine",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "eslint ./src && vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/create-tsrouter-app.git",
"directory": "packages/cta-engine"
},
"homepage": "https://tanstack.com/router",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"tanstack",
"router",
"create-tsrouter-app"
],
"author": "Jack Herrington <jherr@pobox.com>",
"license": "MIT",
"packageManager": "pnpm@9.15.5",
"dependencies": {
"ejs": "^3.1.10",
"execa": "^9.5.2",
"ignore": "^7.0.3",
"memfs": "^4.17.0",
"parse-gitignore": "^2.0.0",
"prettier": "^3.5.0",
"rimraf": "^6.0.1",
"zod": "^3.24.2"
},
"devDependencies": {
"@types/ejs": "^3.1.5",
"@types/node": "^22.13.4",
"@types/parse-gitignore": "^1.0.2",
"@vitest/coverage-v8": "3.1.1",
"eslint": "^9.20.0",
"typescript": "^5.6.3",
"vitest": "^3.0.8",
"vitest-fetch-mock": "^0.4.5"
}
}