-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.86 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.86 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
{
"name": "@workleap/rsbuild-configs",
"author": "Workleap",
"description": "Workleap recommended Rsbuild configurations.",
"version": "3.2.5",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/workleap/wl-web-configs.git",
"directory": "packages/rsbuild-configs"
},
"type": "module",
"publishConfig": {
"access": "public",
"provenance": true
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"sideEffects": false,
"files": [
"src",
"dist",
"CHANGELOG.md"
],
"scripts": {
"build": "rslib build -c rslib.config.ts",
"eslint": "eslint . --max-warnings=0 --cache --cache-location node_modules/.cache/eslint",
"typecheck": "tsgo",
"test": "vitest --config vitest.config.ts --no-watch"
},
"peerDependencies": {
"@rsbuild/core": "^1.7.5",
"@rspack/core": "^1.7.11"
},
"dependencies": {
"@rsbuild/plugin-basic-ssl": "^1.2.2",
"@rsbuild/plugin-image-compress": "^1.3.2",
"@rsbuild/plugin-react": "^1.4.6",
"@rsbuild/plugin-svgr": "^1.3.1"
},
"devDependencies": {
"@eslint/js": "9.39.2",
"@rsbuild/core": "1.7.5",
"@rslib/core": "0.20.2",
"@rspack/core": "1.7.11",
"@types/node": "25.5.0",
"@typescript-eslint/parser": "8.58.0",
"@typescript/native-preview": "7.0.0-dev.20260331.1",
"@workleap/eslint-configs": "workspace:*",
"@workleap/rslib-configs": "workspace:*",
"@workleap/typescript-configs": "workspace:*",
"eslint": "9.39.2",
"typescript": "6.0.2",
"typescript-eslint": "8.58.0",
"vitest": "4.1.2"
}
}