-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 972 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
38
39
40
41
{
"name": "esbuild-bundle-analyzer",
"version": "0.5.0",
"description": "Analyzes each PR's impact on esbuild bundle size",
"type": "module",
"scripts": {
"test": "vitest",
"test:run": "vitest --run",
"build": "node esbuild.mjs",
"check": "tsc && biome check --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/esbio;d/nextjs-bundle-analysis.git"
},
"keywords": [
"lambda",
"esbuild",
"bundle",
"analysis",
"github",
"action"
],
"author": "TATSUNO Yasuhiro",
"license": "MIT",
"bugs": {
"url": "https://github.com/exoego/esbuild-bundle-analysis/issues"
},
"homepage": "https://github.com/exoego/esbuild-bundle-analysis#readme",
"dependencies": {
"glob": "^11.0.0"
},
"devDependencies": {
"@types/node": "^20.14.9",
"@biomejs/biome": "^1.9.4",
"esbuild": "^0.24.0",
"vitest": "^2.1.8",
"typescript": "^5.7.2",
"yaml": "^2.7.0"
}
}