-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 2.69 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 2.69 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
93
94
95
96
97
98
99
{
"name": "@tanstack/start-server-core",
"version": "1.167.4",
"description": "Modern and scalable routing for React applications",
"author": "Tanner Linsley",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/TanStack/router.git",
"directory": "packages/start-server-core"
},
"homepage": "https://tanstack.com/start",
"funding": {
"type": "github",
"url": "https://github.com/sponsors/tannerlinsley"
},
"keywords": [
"react",
"location",
"router",
"routing",
"async",
"async router",
"typescript"
],
"scripts": {
"clean": "rimraf ./dist && rimraf ./coverage",
"test": "pnpm test:eslint && pnpm test:types && pnpm test:build && pnpm test:unit",
"test:unit": "vitest",
"test:eslint": "eslint ./src",
"test:types": "pnpm run \"/^test:types:ts[0-9]{2}$/\"",
"test:types:ts55": "node ../../node_modules/typescript55/lib/tsc.js",
"test:types:ts56": "node ../../node_modules/typescript56/lib/tsc.js",
"test:types:ts57": "node ../../node_modules/typescript57/lib/tsc.js",
"test:types:ts58": "node ../../node_modules/typescript58/lib/tsc.js",
"test:types:ts59": "node ../../node_modules/typescript59/lib/tsc.js",
"test:types:ts60": "tsc",
"test:build": "publint --strict && attw --ignore-rules no-resolution --pack .",
"build": "vite build"
},
"type": "module",
"types": "dist/esm/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/index.d.ts",
"default": "./dist/esm/index.js"
}
},
"./createServerRpc": {
"import": {
"types": "./dist/esm/createServerRpc.d.ts",
"default": "./dist/esm/createServerRpc.js"
}
},
"./createSsrRpc": {
"import": {
"types": "./dist/esm/createSsrRpc.d.ts",
"default": "./dist/esm/createSsrRpc.js"
}
},
"./package.json": "./package.json"
},
"imports": {
"#tanstack-start-server-fn-resolver": {
"default": "./dist/esm/fake-start-server-fn-resolver.js"
}
},
"sideEffects": false,
"files": [
"dist",
"src",
"skills",
"bin",
"!skills/_artifacts"
],
"engines": {
"node": ">=22.12.0"
},
"dependencies": {
"@tanstack/history": "workspace:*",
"@tanstack/router-core": "workspace:*",
"@tanstack/start-client-core": "workspace:*",
"@tanstack/start-storage-context": "workspace:*",
"h3": "2.0.1-rc.19",
"seroval": "^1.4.2"
},
"devDependencies": {
"@standard-schema/spec": "^1.0.0",
"@tanstack/intent": "^0.0.14",
"cookie-es": "^2.0.0",
"fetchdts": "^0.1.6",
"vite": "*",
"@types/node": ">=20"
},
"bin": {
"intent": "./bin/intent.js"
}
}