-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.47 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.47 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
{
"name": "web-ssr",
"version": "0.1.0",
"description": "SSR framework for Web Components based on Declarative Shadow DOM",
"keywords": [
"web-components",
"ssr",
"server-side-rendering",
"declarative-shadow-dom",
"koa",
"jsx"
],
"license": "LGPL-3.0-or-later",
"packageManager": "pnpm@10.33.0",
"type": "module",
"engines": {
"node": ">=22"
},
"bin": {
"webssr": "./dist/cli.js"
},
"exports": {
".": "./dist/index.js",
"./parcel-plugin": "./dist/parcel-plugin/index.js"
},
"scripts": {
"start": "node --import tsx/esm --import ./source/polyfill.ts source/server.ts",
"dev": "node --watch --import tsx/esm --import ./source/polyfill.ts source/server.ts",
"build": "tsc",
"test": "node --import tsx/esm --import ./source/polyfill.ts --test 'test/**/*.test.ts' 'test/**/*.test.tsx'"
},
"dependencies": {
"@koa/router": "^15.4.0",
"@parcel/core": "^2.16.4",
"commander-jsx": "^0.7.3",
"dom-renderer": "^2.6.4",
"happy-dom": "^20.8.9",
"koa": "^3.2.0",
"koa-static": "^5.0.0"
},
"overrides": {
"happy-dom": "^20.8.9"
},
"devDependencies": {
"@parcel/plugin": "^2.16.4",
"@types/koa": "^3.0.2",
"@types/koa-static": "^4.0.4",
"@types/node": "^22.0.0",
"tsx": "^4.19.3",
"typescript": "^5.8.3"
}
}