-
-
Notifications
You must be signed in to change notification settings - Fork 180
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.59 KB
/
Copy pathpackage.json
File metadata and controls
92 lines (92 loc) · 2.59 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@tanstack/create",
"version": "0.69.0",
"description": "TanStack Application Builder Engine",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./edge": {
"types": "./dist/types/edge.d.ts",
"import": "./dist/edge.js",
"default": "./dist/edge.js"
},
"./worker": {
"types": "./dist/types/worker.d.ts",
"import": "./dist/worker.js",
"default": "./dist/worker.js"
},
"./worker/bundled": {
"types": "./dist/types/worker-bundled.d.ts",
"import": "./dist/worker-bundled.js",
"default": "./dist/worker-bundled.js"
},
"./worker-manifest/*": {
"types": "./dist/types/generated/worker/*.d.ts",
"import": "./dist/generated/worker/*.js",
"default": "./dist/generated/worker/*.js"
},
"./manifest": {
"types": "./dist/types/manifest.d.ts",
"import": "./dist/manifest.js",
"default": "./dist/manifest.js"
},
"./dist/*": "./dist/*",
"./package.json": "./package.json"
},
"scripts": {
"build": "npm run generate-manifest && tsc && npm run copy-assets",
"generate-manifest": "node ./scripts/generate-manifest.mjs",
"copy-assets": "node ./scripts/copy-assets.mjs",
"dev": "npm run generate-manifest && tsc --watch",
"test": "npm run generate-manifest && eslint ./src && vitest run",
"test:watch": "npm run generate-manifest && vitest",
"test:coverage": "npm run generate-manifest && vitest run --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/cli.git",
"directory": "packages/create"
},
"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",
"engines": {
"node": ">=20"
},
"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": "4.1.5",
"eslint": "^9.20.0",
"typescript": "^6.0.2",
"vitest": "^4.1.5",
"vitest-fetch-mock": "^0.4.5"
}
}