This repository was archived by the owner on Jan 14, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
92 lines (92 loc) · 2.12 KB
/
package.json
File metadata and controls
92 lines (92 loc) · 2.12 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": "@leanweb/fullstack",
"version": "0.3.1",
"description": "",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"homepage": "https://github.com/theleanweb/fullstack#readme",
"repository": {
"type": "git",
"url": "https://github.com/theleanweb/fullstack.git"
},
"scripts": {
"build": "tsc",
"dev": "tsc --w",
"changeset": "changeset",
"prepublish": "pnpm build",
"version": "changeset version",
"release": "changeset publish"
},
"author": "Joshua Amaju",
"license": "ISC",
"keywords": [
"fullstack",
"ssr"
],
"files": [
"dist",
"ssr.d.ts"
],
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"@types/cookie": "^0.6.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^20.10.6",
"@types/set-cookie-parser": "^2.4.7",
"hono": "^3.12.0",
"svelte": "^4.2.8",
"typescript": "^5.3.3",
"vite": "^5.0.10"
},
"peerDependencies": {
"@sveltejs/vite-plugin-svelte": "^3.0.1",
"hono": "^3.12.0",
"svelte": "^4.2.8",
"vite": "^5.0.10"
},
"dependencies": {
"@remix-run/node": "^2.7.2",
"@remix-run/web-fetch": "^4.4.2",
"cheerio": "1.0.0-rc.12",
"devalue": "^4.3.2",
"effect": "^2.4.1",
"es-module-lexer": "^1.4.1",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"kleur": "^4.1.5",
"magic-string": "^0.30.5",
"mdsvex": "^0.11.0",
"mlly": "^1.5.0",
"parse-es-import": "^0.6.0",
"set-cookie-parser": "^2.6.0",
"sirv": "^2.0.4",
"ts-dedent": "^2.2.0",
"zod": "^3.22.4"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./vite": {
"import": "./dist/vite/Plugin.js",
"types": "./dist/vite/Plugin.d.ts"
},
"./runtime": {
"import": "./dist/runtime/index.js",
"types": "./dist/runtime/index.d.ts"
},
"./runtime/*": {
"import": "./dist/runtime/*.js",
"types": "./dist/runtime/*.d.ts"
},
"./ssr": {
"types": "./ssr.d.ts"
}
}
}