-
Notifications
You must be signed in to change notification settings - Fork 682
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.42 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.42 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
{
"name": "@rushstack/webpack-deep-imports-plugin",
"version": "0.0.0",
"description": "This plugin creates a bundle and commonJS files in a 'lib' folder mirroring modules in another 'lib' folder.",
"main": "./lib-commonjs/index.js",
"module": "./lib-esm/index.js",
"types": "./dist/webpack-deep-imports-plugin.d.ts",
"exports": {
".": {
"types": "./dist/webpack-deep-imports-plugin.d.ts",
"import": "./lib-esm/index.js",
"require": "./lib-commonjs/index.js"
},
"./lib/*": {
"types": "./lib-dts/*.d.ts",
"import": "./lib-esm/*.js",
"require": "./lib-commonjs/*.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
"lib/*": [
"lib-dts/*"
]
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack.git",
"directory": "webpack/webpack-deep-imports-plugin"
},
"engines": {
"node": ">=14.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"
},
"devDependencies": {
"local-node-rig": "workspace:*",
"@rushstack/heft": "workspace:*",
"eslint": "~9.37.0",
"webpack": "~5.105.2"
},
"sideEffects": false,
"dependencies": {
"@rushstack/node-core-library": "workspace:*"
}
}