-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 996 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 996 Bytes
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
{
"name": "van-server",
"version": "0.1.0",
"description": "server-side rendering for VanJS with file-based routing and client-side hydration.",
"source": "src/index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"exports": {
".": {
"import": "./src/index.js"
},
"./server": {
"import": "./src/server.js"
},
"./entry-client": {
"import": "./src/entry-client.js"
},
"./entry-server": {
"import": "./src/entry-server.js"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/zakarialaoui10/van-server.git"
},
"keywords": [
"vanjs"
],
"author": "zakaria elalaoui",
"license": "MIT",
"type": "module",
"bugs": {
"url": "https://github.com/zakarialaoui10/van-server/issues"
},
"homepage": "https://github.com/zakarialaoui10/van-server#readme",
"dependencies": {
"express": "^4.21.2",
"jsdom": "^26.1.0",
"ziko-server": "^0.9.4"
}
}