-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
138 lines (138 loc) · 4.02 KB
/
package.json
File metadata and controls
138 lines (138 loc) · 4.02 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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
{
"name": "vorma",
"version": "0.84.0",
"description": "The Next.js of Golang, powered by Vite.",
"type": "module",
"sideEffects": false,
"license": "BSD-3-Clause",
"repository": {
"url": "https://github.com/vormadev/vorma",
"type": "git"
},
"bugs": {
"url": "https://github.com/vormadev/vorma/issues"
},
"homepage": "https://vorma.dev",
"author": "Samuel J. Cook",
"keywords": [
"react",
"go",
"golang",
"framework",
"typescript",
"router",
"preact",
"solid",
"meta-framework",
"vite"
],
"exports": {
"./client": {
"import": "./npm_dist/internal/framework/_typescript/client/index.js",
"types": "./npm_dist/internal/framework/_typescript/client/index.d.ts"
},
"./react": {
"import": "./npm_dist/internal/framework/_typescript/react/index.js",
"types": "./npm_dist/internal/framework/_typescript/react/index.d.ts"
},
"./solid": {
"import": "./npm_dist/internal/framework/_typescript/solid/index.js",
"types": "./npm_dist/internal/framework/_typescript/solid/index.d.ts"
},
"./preact": {
"import": "./npm_dist/internal/framework/_typescript/preact/index.js",
"types": "./npm_dist/internal/framework/_typescript/preact/index.d.ts"
},
"./vite": {
"import": "./npm_dist/internal/framework/_typescript/vite/vite.js",
"types": "./npm_dist/internal/framework/_typescript/vite/vite.d.ts"
},
"./kit/converters": {
"import": "./npm_dist/kit/_typescript/converters/converters.js",
"types": "./npm_dist/kit/_typescript/converters/converters.d.ts"
},
"./kit/cookies": {
"import": "./npm_dist/kit/_typescript/cookies/cookies.js",
"types": "./npm_dist/kit/_typescript/cookies/cookies.d.ts"
},
"./kit/csrf": {
"import": "./npm_dist/kit/_typescript/csrf/csrf.js",
"types": "./npm_dist/kit/_typescript/csrf/csrf.d.ts"
},
"./kit/debounce": {
"import": "./npm_dist/kit/_typescript/debounce/debounce.js",
"types": "./npm_dist/kit/_typescript/debounce/debounce.d.ts"
},
"./kit/fmt": {
"import": "./npm_dist/kit/_typescript/fmt/fmt.js",
"types": "./npm_dist/kit/_typescript/fmt/fmt.d.ts"
},
"./kit/json": {
"import": "./npm_dist/kit/_typescript/json/json.js",
"types": "./npm_dist/kit/_typescript/json/json.d.ts"
},
"./kit/listeners": {
"import": "./npm_dist/kit/_typescript/listeners/listeners.js",
"types": "./npm_dist/kit/_typescript/listeners/listeners.d.ts"
},
"./kit/matcher/register": {
"import": "./npm_dist/kit/_typescript/matcher/register.js",
"types": "./npm_dist/kit/_typescript/matcher/register.d.ts"
},
"./kit/matcher/find-best": {
"import": "./npm_dist/kit/_typescript/matcher/find_best_match.js",
"types": "./npm_dist/kit/_typescript/matcher/find_best_match.d.ts"
},
"./kit/matcher/find-nested": {
"import": "./npm_dist/kit/_typescript/matcher/find_nested_matches.js",
"types": "./npm_dist/kit/_typescript/matcher/find_nested_matches.d.ts"
},
"./kit/theme": {
"import": "./npm_dist/kit/_typescript/theme/theme.js",
"types": "./npm_dist/kit/_typescript/theme/theme.d.ts"
},
"./kit/url": {
"import": "./npm_dist/kit/_typescript/url/url.js",
"types": "./npm_dist/kit/_typescript/url/url.d.ts"
}
},
"files": [
"npm_dist/",
"LICENSE",
"README.md",
"tsconfig.base.json",
"internal/framework/_typescript/",
"kit/_typescript/",
"internal/site/frontend/assets/vorma-banner.webp",
"!node_modules",
"!**/*.test.*",
"!**/*.bench.*",
"!**/bench.txt"
],
"devDependencies": {
"@preact/signals": "^2.3.1",
"@types/jsdom": "^21.1.7",
"@types/node": "^22.18.1",
"@types/react": "^19.1.12",
"@types/react-dom": "^19.1.9",
"@typescript/native-preview": "7.0.0-dev.20250716.1",
"esbuild": "^0.25.9",
"esbuild-plugin-solid": "^0.6.0",
"history": "5.3.0",
"jsdom": "^26.1.0",
"oxlint": "^1.14.0",
"preact": "^10.27.1",
"prettier": "^3.6.2",
"react": "^19.1.1",
"react-dom": "^19.1.1",
"solid-js": "^1.9.9",
"typescript": "^5.9.2",
"vite": "npm:rolldown-vite@latest",
"vitest": "^3.2.4"
},
"prettier": {
"useTabs": true,
"tabWidth": 4,
"proseWrap": "always"
}
}