-
Notifications
You must be signed in to change notification settings - Fork 418
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.09 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.09 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
{
"name": "@solidjs/start",
"version": "1.2.1",
"type": "module",
"author": "Ryan Carniato",
"license": "MIT",
"homepage": "https://start.solidjs.com/",
"bugs": "https://github.com/solidjs/solid-start/issues",
"repository": {
"type": "git",
"url": "https://github.com/solidjs/solid-start.git",
"directory": "packages/start"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"typecheck": "tsc --noEmit",
"build": "node build && pnpm tsc",
"test": "vitest",
"test:ci": "vitest run"
},
"files": [
"config",
"dist",
"env.d.ts"
],
"types": "./dist/index.d.ts",
"exports": {
".": "./dist/index.jsx",
"./config": "./config/index.js",
"./middleware": "./dist/middleware/index.jsx",
"./router": "./dist/router/index.jsx",
"./server": "./dist/server/index.jsx",
"./server/spa": "./dist/server/spa/index.jsx",
"./client": "./dist/client/index.jsx",
"./client/islands": "./dist/client/islands.jsx",
"./client/spa": "./dist/client/spa/index.jsx",
"./env": {
"types": "./env.d.ts",
"import": null
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"middleware": [
"./dist/middleware/index.d.ts"
],
"router": [
"./dist/router/index.d.ts"
],
"server": [
"./dist/server/index.d.ts"
],
"client": [
"./dist/client/index.d.ts"
]
}
},
"devDependencies": {
"solid-js": "^1.9.11",
"vinxi": "^0.5.7",
"vitest": "3.0.5"
},
"dependencies": {
"@tanstack/server-functions-plugin": "1.121.21",
"@vinxi/plugin-directives": "^0.5.0",
"@vinxi/server-components": "^0.5.0",
"cookie-es": "^2.0.0",
"defu": "^6.1.2",
"error-stack-parser": "^2.1.4",
"html-to-image": "^1.11.11",
"radix3": "^1.1.0",
"seroval": "^1.5.0",
"seroval-plugins": "^1.5.0",
"shiki": "^1.26.1",
"source-map-js": "^1.0.2",
"terracotta": "^1.0.4",
"tinyglobby": "^0.2.2",
"vite-plugin-solid": "^2.11.10"
},
"peerDependencies": {
"vinxi": "^0.5.7"
}
}