-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
114 lines (114 loc) · 3.01 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
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
{
"name": "rollup-plugin-summary",
"version": "0.0.0-semantically-released",
"description": "A rollup plugin that summarizes the build",
"main": "./dist/cjs/index.js",
"module": "./dist/es/index.js",
"types": "./index.d.ts",
"typings": "./index.d.ts",
"repository": "https://github.com/yousifalraheem/rollup-plugin-summary.git",
"homepage": "https://yousifalraheem.github.io/rollup-plugin-summary/",
"bugs": {
"url": "https://github.com/yousifalraheem/rollup-plugin-summary/issues"
},
"author": "Yousif Al-Raheem <[email protected]>",
"license": "MIT",
"keywords": [
"rollup",
"plugin",
"size",
"file",
"filesize",
"summary",
"table"
],
"files": [
"dist",
"!dist/**/*.map",
"types",
"README.md",
"LICENSE"
],
"scripts": {
"prebuild": "rm -rf dist/*",
"build": "rollup -c",
"postbuild": "node scripts/pre-release.js",
"build:docs": "node scripts/pre-docs.js",
"test": "jest",
"test:project": "npm run build --prefix test-project",
"lint": "eslint .",
"release": "semantic-release",
"commit": "cz",
"prepare": "husky",
"format:check": "prettier --check .",
"format:all": "prettier --write ."
},
"dependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.13.0",
"brotli-size": "^4.0.0",
"cli-table3": "^0.6.5",
"filesize": "^10.1.6",
"globals": "^15.11.0",
"gzip-size": "^7.0.0",
"terser": "^5.36.0"
},
"devDependencies": {
"@babel/core": "^7.26.0",
"@babel/plugin-transform-modules-commonjs": "^7.25.9",
"@babel/preset-env": "^7.26.0",
"@babel/preset-typescript": "^7.26.0",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-typescript": "^12.1.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.8.4",
"@typescript-eslint/eslint-plugin": "^8.12.2",
"@typescript-eslint/parser": "^8.12.2",
"babel-jest": "^29.7.0",
"babel-preset-jest": "^29.6.3",
"commitizen": "^4.3.1",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^9.13.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-jest": "^28.8.3",
"fs-extra": "^11.2.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"regenerator-runtime": "^0.14.1",
"rollup": "^4.0.0",
"rollup-plugin-node-externals": "^7.1.3",
"rollup-plugin-node-resolve": "^5.2.0",
"semantic-release": "^24.2.0",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.6.3"
},
"peerDependencies": {
"rollup": "^3.0.0||^4.0.0"
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release": {
"branches": [
"main"
],
"pkgRoot": "dist"
},
"engines": {
"node": ">=20.9.0"
}
}