-
Notifications
You must be signed in to change notification settings - Fork 408
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.33 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.33 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
{
"name": "@solidjs/start",
"version": "2.0.0-alpha.2",
"type": "module",
"scripts": {
"build": "pnpm validate-imports && tsc && node scripts/build.js",
"dev": "tsc --watch",
"test": "vitest",
"test:ci": "vitest run",
"validate-imports": "node scripts/validate-imports.js"
},
"exports": {
".": "./src/index.tsx",
"./config": "./src/config/index.ts",
"./server": "./src/server/index.tsx",
"./client": "./src/client/index.tsx",
"./router": "./src/router.tsx",
"./server/spa": "./src/server/spa/index.tsx",
"./client/spa": "./src/client/spa/index.tsx",
"./middleware": "./src/middleware/index.ts",
"./http": "./src/http/index.ts",
"./env": "./env.d.ts",
"./image": "./src/image/index.tsx"
},
"publishConfig": {
"access": "public",
"exports": {
".": "./dist/index.jsx",
"./config": "./dist/config/index.js",
"./server": "./dist/server/index.jsx",
"./client": "./dist/client/index.jsx",
"./router": "./dist/router.jsx",
"./server/spa": "./dist/server/spa/index.jsx",
"./client/spa": "./dist/client/spa/index.jsx",
"./middleware": "./dist/middleware/index.js",
"./http": "./dist/http/index.js",
"./env": "./env.d.ts",
"./image": "./dist/image/index.jsx"
}
},
"dependencies": {
"@babel/core": "^7.28.3",
"@babel/traverse": "^7.28.3",
"@babel/types": "^7.28.5",
"@solidjs/meta": "^0.29.4",
"@tanstack/server-functions-plugin": "1.134.5",
"@types/babel__traverse": "^7.28.0",
"@types/micromatch": "^4.0.9",
"cookie-es": "^2.0.0",
"defu": "^6.1.4",
"error-stack-parser": "^2.1.4",
"es-module-lexer": "^1.7.0",
"esbuild": "^0.25.3",
"fast-glob": "^3.3.3",
"h3": "npm:h3@2.0.1-rc.4",
"html-to-image": "^1.11.13",
"micromatch": "^4.0.8",
"path-to-regexp": "^8.2.0",
"pathe": "^2.0.3",
"radix3": "^1.1.2",
"seroval": "^1.4.1",
"seroval-plugins": "^1.4.0",
"sharp": "^0.34.5",
"shiki": "^1.26.1",
"solid-js": "^1.9.9",
"source-map-js": "^1.2.1",
"srvx": "^0.9.1",
"terracotta": "^1.0.6",
"vite-plugin-solid": "^2.11.9"
},
"engines": {
"node": ">=22"
},
"devDependencies": {
"@types/babel__core": "^7.20.5",
"vite": "^7.1.10",
"vitest": "^4.0.10"
},
"peerDependencies": {
"vite": "^7"
}
}