-
-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 2.26 KB
/
package.json
File metadata and controls
90 lines (90 loc) · 2.26 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "filemanager-webpack-plugin",
"version": "10.0.1",
"description": "Webpack plugin to copy, archive (.zip), move, delete files and directories before and after builds",
"keywords": [
"filemanager-plugin",
"webpack",
"webpack-archive-plugin",
"webpack-copy-plugin"
],
"homepage": "https://github.com/gregnb/filemanager-webpack-plugin#readme",
"bugs": "https://github.com/gregnb/filemanager-webpack-plugin/issues",
"license": "MIT",
"author": "gregnb",
"contributors": [
{
"name": "Sibiraj",
"url": "https://github.com/sibiraj-s"
}
],
"repository": "github:gregnb/filemanager-webpack-plugin",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/sibiraj-s"
}
],
"files": [
"dist"
],
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"test": "vitest run",
"test:watch": "vitest",
"format": "prettier . --write --ignore-path .gitignore",
"prepublishOnly": "npm run build && npm run test",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@types/archiver": "^7.0.0",
"@types/fs-extra": "^11.0.4",
"@types/is-glob": "^4.0.4",
"@types/normalize-path": "^3.0.2",
"archiver": "^7.0.1",
"del": "^8.0.1",
"fast-glob": "^3.3.3",
"fs-extra": "^11.3.4",
"is-glob": "^4.0.3",
"normalize-path": "^3.0.0",
"schema-utils": "^4.3.3"
},
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@types/node": "^24.12.0",
"commitlint-config-non-conventional": "^1.0.1",
"html-webpack-plugin": "^5.6.6",
"husky": "^9.1.7",
"is-ci": "^4.1.0",
"jszip": "^3.10.1",
"lint-staged": "^16.4.0",
"oxfmt": "^0.41.0",
"oxlint": "^1.56.0",
"publint": "^0.3.18",
"tsdown": "^0.21.4",
"typescript": "^5.9.3",
"vitest": "^4.1.0",
"webpack": "^5.105.4"
},
"peerDependencies": {
"webpack": "^5.0.0"
},
"engines": {
"node": ">=22.14.0"
}
}