forked from microsoft/rushstack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.43 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.43 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
{
"name": "@rushstack/hashed-folder-copy-plugin",
"version": "1.2.4",
"description": "Webpack plugin for copying a folder to the output directory with a hash in the folder name.",
"typings": "dist/hashed-folder-copy-plugin.d.ts",
"main": "lib/index.js",
"exports": {
".": {
"types": "./dist/hashed-folder-copy-plugin.d.ts",
"default": "./lib/index.js"
},
"./ambientTypes": {
"types": "./dist/ambientTypes.d.ts"
},
"./lib/*": {
"types": "./lib/*.d.ts",
"default": "./lib/*.js"
},
"./package.json": "./package.json"
},
"typesVersions": {
"*": {
".": [
"./dist/hashed-folder-copy-plugin.d.ts"
],
"ambientTypes": [
"./dist/ambientTypes.d.ts"
]
}
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/microsoft/rushstack.git",
"directory": "webpack/hashed-folder-copy-plugin"
},
"scripts": {
"build": "heft build --clean",
"_phase:build": "heft run --only build -- --clean",
"_phase:test": "heft run --only test -- --clean"
},
"peerDependencies": {
"webpack": "^5.68.0"
},
"dependencies": {
"@rushstack/node-core-library": "workspace:*",
"fast-glob": "~3.3.1"
},
"devDependencies": {
"@rushstack/heft": "workspace:*",
"@types/estree": "1.0.6",
"eslint": "~9.37.0",
"local-node-rig": "workspace:*",
"memfs": "4.12.0",
"webpack": "~5.98.0"
}
}