-
Notifications
You must be signed in to change notification settings - Fork 409
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.33 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.33 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
{
"name": "@modern-js/builder",
"version": "3.1.4",
"description": "A builder for Modern.js",
"repository": {
"type": "git",
"url": "https://github.com/web-infra-dev/modern.js",
"directory": "packages/cli/builder"
},
"license": "MIT",
"type": "commonjs",
"exports": {
".": {
"types": "./dist/types/index.d.ts",
"node": {
"import": "./dist/esm-node/index.mjs",
"require": "./dist/cjs/index.js"
},
"default": "./dist/cjs/index.js"
}
},
"main": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts",
"files": [
"compiled",
"dist"
],
"scripts": {
"build": "rslib build",
"dev": "rslib build --watch",
"test": "rstest run",
"test:watch": "rstest watch"
},
"dependencies": {
"@modern-js/utils": "workspace:*",
"@rsbuild/core": "2.0.0-rc.0",
"@rsbuild/plugin-assets-retry": "1.5.1",
"@rsbuild/plugin-check-syntax": "1.6.1",
"@rsbuild/plugin-css-minimizer": "1.1.1",
"@rsbuild/plugin-less": "1.6.0",
"@rsbuild/plugin-react": "1.4.4",
"@rsbuild/plugin-rem": "1.0.5",
"@rsbuild/plugin-sass": "1.5.0",
"@rsbuild/plugin-source-build": "1.0.4",
"@rsbuild/plugin-svgr": "1.3.0",
"@rsbuild/plugin-type-check": "1.3.3",
"@rsbuild/plugin-typed-css-modules": "1.2.1",
"@swc/core": "1.15.11",
"rsbuild-plugin-rsc": "0.0.1-beta.0",
"@swc/helpers": "^0.5.17",
"autoprefixer": "10.4.27",
"browserslist": "4.28.2",
"core-js": "^3.48.0",
"cssnano": "6.1.2",
"html-minifier-terser": "^7.2.0",
"lodash": "^4.17.23",
"postcss": "^8.5.9",
"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",
"rspack-manifest-plugin": "5.2.1",
"ts-deepmerge": "7.0.3"
},
"devDependencies": {
"@modern-js/rslib": "workspace:*",
"@modern-js/types": "workspace:*",
"@rslib/core": "0.21.0",
"@scripts/rstest-config": "workspace:*",
"@types/html-minifier-terser": "^7.0.2",
"@types/lodash": "^4.17.24",
"react": "^19.2.4",
"terser": "^5.46.1",
"typescript": "^5.3.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}