-
Notifications
You must be signed in to change notification settings - Fork 409
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.38 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.38 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
{
"name": "@modern-js/server",
"description": "A Progressive React Framework for modern web development.",
"homepage": "https://modernjs.dev",
"bugs": "https://github.com/web-infra-dev/modern.js/issues",
"repository": {
"type": "git",
"url": "https://github.com/web-infra-dev/modern.js",
"directory": "packages/server/server"
},
"license": "MIT",
"keywords": [
"react",
"framework",
"modern",
"modern.js"
],
"version": "3.1.4",
"types": "./src/index.ts",
"main": "./dist/cjs/index.js",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"modern:source": "./src/index.ts",
"node": {
"import": "./dist/esm-node/index.mjs",
"require": "./dist/cjs/index.js"
},
"default": "./dist/cjs/index.js"
}
},
"typesVersions": {
"*": {
".": [
"./dist/types/index.d.ts"
]
}
},
"scripts": {
"prepublishOnly": "only-allow-pnpm",
"build": "rslib build",
"dev": "rslib build --watch",
"test": "rstest"
},
"dependencies": {
"@modern-js/runtime-utils": "workspace:*",
"@modern-js/server-core": "workspace:*",
"@modern-js/server-utils": "workspace:*",
"@modern-js/types": "workspace:*",
"@modern-js/utils": "workspace:*",
"@swc/helpers": "^0.5.17",
"axios": "^1.13.6",
"connect-history-api-fallback": "^2.0.0",
"http-compression": "1.0.6",
"minimatch": "^3.1.2",
"path-to-regexp": "^6.3.0",
"ws": "^8.19.0"
},
"devDependencies": {
"@modern-js/builder": "workspace:*",
"@modern-js/rslib": "workspace:*",
"@rslib/core": "0.21.0",
"@scripts/rstest-config": "workspace:*",
"@types/connect-history-api-fallback": "^1.5.4",
"@types/minimatch": "^3.0.5",
"@types/node": "^20",
"@types/ws": "^8.18.1",
"node-mocks-http": "^1.17.2",
"ts-node": "^10.9.2",
"tsconfig-paths": "4.2.0",
"typescript": "^5",
"websocket": "^1.0.35"
},
"peerDependencies": {
"devcert": "^1.2.3",
"ts-node": "^10.9.2",
"tsconfig-paths": ">= 3.0.0 || >= 4.0.0"
},
"peerDependenciesMeta": {
"devcert": {
"optional": true
},
"ts-node": {
"optional": true
},
"tsconfig-paths": {
"optional": true
}
},
"sideEffects": false,
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public",
"types": "./dist/types/index.d.ts"
}
}