-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.34 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
41
42
43
44
45
46
47
48
49
50
{
"name": "rollup-plugin-chunk-per-export",
"version": "1.0.2",
"type": "module",
"description": "Rollup plugin that ensures different exports are in different files for optimal tree-shaking",
"repository": {
"type": "git",
"url": "git+https://github.com/cprecioso/rollup-plugin-chunk-per-export.git"
},
"homepage": "https://github.com/cprecioso/rollup-plugin-chunk-per-export#readme",
"bugs": {
"url": "https://github.com/cprecioso/rollup-plugin-chunk-per-export/issues"
},
"author": "Carlos Precioso",
"license": "ISC",
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"main": "dist/index.js",
"types": "index.d.ts",
"files": [
"dist",
"index.d.ts"
],
"keywords": [
"rollup-plugin"
],
"scripts": {
"build": "esbuild --outdir=dist --bundle --platform=node --target=node18 --packages=external --format=esm src/index.ts",
"prepack": "yarn run build"
},
"peerDependencies": {
"rollup": "^3.17.3"
},
"dependencies": {
"@rollup/pluginutils": "^5.0.2"
},
"devDependencies": {
"@types/estree": "^1.0.0",
"@types/node": "^18",
"esbuild": "^0.17.11",
"prettier": "2.8.4",
"prettier-plugin-organize-imports": "3.2.2",
"prettier-plugin-pkg": "0.17.1",
"prettier-plugin-sh": "0.12.8",
"rollup": "^3.17.3",
"typescript": "~4.9.5"
}
}