-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.94 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.94 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
{
"name": "overweight",
"version": "1.3.10",
"description": "Extensible bundle size guard with pluggable testers, CLI, and GitHub Action.",
"type": "module",
"packageManager": "pnpm@9.15.9",
"engines": {
"node": ">=20.0.0"
},
"sideEffects": false,
"main": "./dist/index.js",
"module": "./dist/index.js",
"exports": {
".": {
"import": "./dist/index.js"
},
"./cli": "./dist/cli.js",
"./action": "./dist/action/index.js"
},
"bin": {
"overweight": "dist/cli.js"
},
"files": [
"dist",
"!dist/action",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsup",
"test": "vitest run",
"test:watch": "vitest",
"check": "pnpm run test && pnpm run build",
"release": "semantic-release",
"prepare": "simple-git-hooks",
"prepublishOnly": "pnpm run build",
"dogfood": "pnpm run build && node dist/cli.js --reporter console --config overweight.json",
"sync-tags": "git fetch --tags --force"
},
"keywords": [
"bundlesize",
"bundle",
"size",
"ci",
"weight",
"gzip",
"brotli"
],
"author": "Yoav Niran",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.1",
"cac": "^6.7.14",
"fast-glob": "^3.3.3",
"picocolors": "^1.1.1",
"pretty-bytes": "^7.1.0",
"zod": "^4.1.13"
},
"devDependencies": {
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^12.0.2",
"@semantic-release/npm": "^13.1.2",
"@semantic-release/release-notes-generator": "^14.1.0",
"semantic-release": "^25.0.2",
"simple-git-hooks": "^2.13.1",
"tsup": "^8.5.1",
"vitest": "^4.0.14"
},
"simple-git-hooks": {
"commit-msg": "pnpm commitlint --edit \"$1\""
}
}