-
Notifications
You must be signed in to change notification settings - Fork 612
/
Copy pathpackage.json
40 lines (40 loc) · 1.04 KB
/
package.json
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
{
"name": "@rushstack/webpack-workspace-resolve-plugin",
"version": "0.4.5",
"description": "This plugin leverages workspace-level metadata to greatly accelerate module resolution.",
"main": "lib/index.js",
"typings": "dist/webpack-workspace-resolve-plugin.d.ts",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack.git",
"directory": "webpack/webpack-workspace-resolve-plugin"
},
"engines": {
"node": ">=18.19.0"
},
"scripts": {
"build": "heft build --clean",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"peerDependencies": {
"webpack": "^5.68.0",
"@types/node": "*"
},
"dependencies": {
"@rushstack/lookup-by-path": "workspace:*"
},
"devDependencies": {
"@rushstack/heft": "workspace:*",
"local-node-rig": "workspace:*",
"memfs": "4.12.0",
"webpack": "~5.95.0"
},
"sideEffects": false,
"peerDependenciesMeta": {
"@types/node": {
"optional": true
}
}
}