-
-
Notifications
You must be signed in to change notification settings - Fork 258
Expand file tree
/
Copy pathpackage.json
More file actions
105 lines (105 loc) · 2.48 KB
/
package.json
File metadata and controls
105 lines (105 loc) · 2.48 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
{
"name": "@rsbuild/core",
"version": "2.0.0-beta.10",
"description": "The Rspack-based build tool.",
"homepage": "https://rsbuild.rs",
"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": "module",
"exports": {
".": {
"types": "./dist-types/index.d.ts",
"default": "./dist/index.js"
},
"./types": {
"types": "./types.d.ts"
},
"./package.json": "./package.json"
},
"types": "./dist-types/index.d.ts",
"bin": {
"rsbuild": "./bin/rsbuild.js"
},
"files": [
"bin",
"dist",
"dist-types",
"static",
"compiled",
"types.d.ts"
],
"scripts": {
"build": "rslib",
"dev": "rslib -w",
"prebundle": "prebundle"
},
"dependencies": {
"@rspack/core": "2.0.0-beta.8",
"@swc/helpers": "^0.5.20"
},
"peerDependencies": {
"core-js": ">= 3.0.0"
},
"peerDependenciesMeta": {
"core-js": {
"optional": true
}
},
"devDependencies": {
"@jridgewell/remapping": "^2.3.5",
"@jridgewell/trace-mapping": "^0.3.31",
"@rslib/core": "0.20.0",
"@types/cors": "^2.8.19",
"@types/node": "^24.12.0",
"@types/on-finished": "2.3.5",
"@types/range-parser": "^1.2.7",
"@types/ws": "^8.18.1",
"browserslist-load-config": "1.0.1",
"cac": "^7.0.0",
"chokidar": "^5.0.0",
"connect-next": "4.0.0",
"cors": "^2.8.6",
"css-loader": "7.1.4",
"deepmerge": "^4.3.1",
"dotenv-expand": "12.0.3",
"html-rspack-plugin": "6.1.7",
"http-proxy-middleware": "^3.0.5",
"jiti": "^2.6.1",
"launch-editor-middleware": "^2.13.2",
"memfs": "^4.57.1",
"mrmime": "^2.0.1",
"on-finished": "2.4.1",
"open": "^11.0.0",
"postcss": "^8.5.8",
"postcss-load-config": "6.0.1",
"postcss-loader": "8.2.1",
"prebundle": "1.6.4",
"range-parser": "^1.2.1",
"reduce-configs": "^1.1.1",
"rslog": "^2.1.0",
"rspack-chain": "^2.0.0-beta.1",
"rspack-manifest-plugin": "5.2.1",
"sirv": "^3.0.2",
"stacktrace-parser": "^0.1.11",
"style-loader": "^4.0.0",
"supports-color": "^10.2.2",
"tinyglobby": "^0.2.15",
"typescript": "^6.0.2",
"webpack-merge": "6.0.1",
"ws": "^8.20.0"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}