-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
37 lines (37 loc) · 841 Bytes
/
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
{
"name": "treeshake-cli",
"version": "0.2.6",
"description": "Tests tree-shaking with Rollup, Webpack, and ESBuild.",
"keywords": [
"rollup",
"webpack",
"esbuild",
"bundlers",
"modules",
"esm",
"treeshaking"
],
"author": "Cody Bennett (https://github.com/CodyJasonBennett)",
"homepage": "https://github.com/CodyJasonBennett/treeshake-cli",
"repository": "https://github.com/CodyJasonBennett/treeshake-cli",
"license": "MIT",
"type": "module",
"files": [
"index.js",
"package.json",
"LICENSE",
"README.md"
],
"bin": {
"treeshake": "index.js"
},
"dependencies": {
"@rollup/plugin-virtual": "^3.0.2",
"acorn": "^8.10.0",
"acorn-walk": "^8.2.0",
"esbuild": "^0.19.4",
"memory-fs": "^0.5.0",
"rollup": "^4.0.2",
"webpack": "^5.88.2"
}
}