-
-
Notifications
You must be signed in to change notification settings - Fork 96
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.1 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.1 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
{
"name": "@rsdoctor/webpack-plugin",
"version": "1.5.8",
"repository": {
"type": "git",
"url": "https://github.com/web-infra-dev/rsdoctor",
"directory": "packages/webpack-plugin"
},
"license": "MIT",
"main": "dist/index.cjs",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.cjs"
}
},
"scripts": {
"dev": "npm run start",
"build": "rslib build",
"start": "rslib build -w",
"test": "rstest run"
},
"dependencies": {
"@rsdoctor/core": "workspace:*",
"@rsdoctor/graph": "workspace:*",
"@rsdoctor/sdk": "workspace:*",
"@rsdoctor/types": "workspace:*",
"@rsdoctor/utils": "workspace:*"
},
"devDependencies": {
"@types/node": "^22.8.1",
"@types/tapable": "2.3.0",
"tslib": "2.8.1",
"typescript": "^5.9.2",
"webpack": "^5.105.4"
},
"peerDependencies": {
"webpack": "5.x"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}