-
Notifications
You must be signed in to change notification settings - Fork 186
/
Copy pathpackage.json
92 lines (92 loc) · 2.19 KB
/
package.json
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": "@rsbuild/core",
"version": "0.6.13",
"description": "The Rspack-based build tool.",
"homepage": "https://rsbuild.dev",
"bugs": {
"url": "https://github.com/web-infra-dev/rsbuild/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/web-infra-dev/rsbuild",
"directory": "packages/core"
},
"license": "MIT",
"type": "commonjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client/hmr": {
"types": "./dist/client/hmr/index.d.ts",
"default": "./dist/client/hmr.mjs"
},
"./client/overlay": {
"types": "./dist/client/overlay.d.ts",
"default": "./dist/client/overlay.mjs"
},
"./internal": {
"types": "./dist/internal.d.ts",
"default": "./dist/internal.js"
},
"./types": {
"types": "./types.d.ts"
},
"./package.json": "./package.json"
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"rsbuild": "./bin/rsbuild.js"
},
"files": [
"bin",
"dist",
"static",
"compiled",
"types.d.ts"
],
"scripts": {
"build": "modern build",
"dev": "modern build --watch",
"prebundle": "prebundle"
},
"dependencies": {
"@rsbuild/shared": "workspace:*",
"@rspack/core": "0.6.5",
"@swc/helpers": "0.5.3",
"core-js": "~3.36.0",
"html-webpack-plugin": "npm:[email protected]",
"postcss": "^8.4.38",
"source-map": "0.5.7"
},
"devDependencies": {
"@types/node": "18.x",
"@types/on-finished": "2.3.4",
"@types/ws": "^8.5.10",
"commander": "^12.0.0",
"connect-history-api-fallback": "^2.0.0",
"rspack-manifest-plugin": "5.0.0",
"dotenv": "16.4.5",
"dotenv-expand": "11.0.6",
"http-compression": "1.0.19",
"launch-editor-middleware": "^2.6.1",
"on-finished": "2.4.1",
"open": "^8.4.0",
"prebundle": "1.1.0",
"sirv": "^2.0.4",
"typescript": "^5.4.2",
"webpack": "^5.91.0",
"webpack-dev-middleware": "7.2.1",
"ws": "^8.17.0"
},
"engines": {
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public",
"provenance": true,
"registry": "https://registry.npmjs.org/"
}
}