-
Notifications
You must be signed in to change notification settings - Fork 402
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.48 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "@modern-js/uni-builder",
"version": "2.69.7",
"description": "Unified builder for Modern.js",
"repository": {
"type": "git",
"url": "https://github.com/web-infra-dev/modern.js",
"directory": "packages/cli/uni-builder"
},
"license": "MIT",
"type": "commonjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./rsc": {
"types": "./dist/shared/rsc/index.d.ts",
"default": "./dist/shared/rsc/index.js"
}
},
"typesVersions": {
"*": {
".": [
"./dist/index.d.ts"
],
"rsc": [
"./dist/shared/rsc/index.d.ts"
]
}
},
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"compiled",
"dist"
],
"scripts": {
"build": "modern-lib build",
"dev": "modern-lib build --watch",
"test": "vitest run",
"test:watch": "vitest dev"
},
"dependencies": {
"@babel/core": "^7.26.0",
"@babel/preset-react": "^7.22.15",
"@babel/types": "^7.26.0",
"@modern-js/babel-preset": "workspace:*",
"@modern-js/flight-server-transform-plugin": "workspace:*",
"@modern-js/utils": "workspace:*",
"@pmmmwh/react-refresh-webpack-plugin": "0.5.16",
"@rsbuild/core": "1.7.2",
"@rsbuild/plugin-assets-retry": "1.5.0",
"@rsbuild/plugin-babel": "1.0.6",
"@rsbuild/plugin-check-syntax": "1.6.0",
"@rsbuild/plugin-css-minimizer": "1.1.0",
"@rsbuild/plugin-less": "1.5.0",
"@rsbuild/plugin-pug": "1.3.2",
"@rsbuild/plugin-react": "1.4.2",
"@rsbuild/plugin-rem": "1.0.4",
"@rsbuild/plugin-sass": "1.4.0",
"@rsbuild/plugin-source-build": "1.0.3",
"@rsbuild/plugin-styled-components": "1.6.0",
"@rsbuild/plugin-svgr": "1.2.3",
"@rsbuild/plugin-toml": "1.1.1",
"@rsbuild/plugin-type-check": "1.3.2",
"@rsbuild/plugin-typed-css-modules": "1.2.0",
"@rsbuild/plugin-yaml": "1.0.3",
"@rsbuild/webpack": "1.7.0",
"@swc/core": "1.15.8",
"@swc/helpers": "^0.5.17",
"autoprefixer": "10.4.23",
"babel-loader": "9.2.1",
"babel-plugin-import": "1.13.8",
"babel-plugin-styled-components": "1.13.3",
"babel-plugin-transform-react-remove-prop-types": "0.4.24",
"browserslist": "4.24.4",
"cssnano": "6.1.2",
"es-module-lexer": "^1.1.0",
"glob": "^9.3.5",
"html-minifier-terser": "^7.2.0",
"html-webpack-plugin": "5.6.5",
"jiti": "1.21.7",
"lodash": "^4.17.21",
"magic-string": "0.30.17",
"picocolors": "^1.1.1",
"postcss": "^8.5.6",
"postcss-custom-properties": "13.3.12",
"postcss-flexbugs-fixes": "5.0.2",
"postcss-font-variant": "5.0.0",
"postcss-initial": "4.0.1",
"postcss-media-minmax": "5.0.0",
"postcss-nesting": "12.1.5",
"postcss-page-break": "3.0.4",
"react-refresh": "^0.14.0",
"rspack-manifest-plugin": "5.0.3",
"terser-webpack-plugin": "5.3.14",
"ts-deepmerge": "7.0.2",
"ts-loader": "9.4.4",
"webpack": "^5.104.1",
"webpack-subresource-integrity": "5.1.0"
},
"devDependencies": {
"@modern-js/types": "workspace:*",
"@rsbuild/plugin-webpack-swc": "1.1.2",
"@scripts/build": "workspace:*",
"@scripts/vitest-config": "workspace:*",
"@types/es-module-lexer": "^0.4.3",
"@types/html-minifier-terser": "^7.0.2",
"@types/lodash": "^4.14.202",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"terser": "^5.31.1",
"typescript": "^5.3.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}