-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1006 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1006 Bytes
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
{
"name": "bundle-size-action",
"version": "0.1.1",
"description": "A GitHub Action to check and report bundle sizes",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "vite build",
"lint": "oxlint src tests vite.config.ts vitest.config.ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:ci": "vitest run --coverage --coverage.reporter=text --coverage.reporter=json-summary --reporter=default --reporter=junit --outputFile.junit=reports/vitest-junit.xml",
"clean": "rimraf dist"
},
"keywords": [
"github-action",
"bundle-size",
"ci"
],
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.1"
},
"devDependencies": {
"@types/node": "^24.12.3",
"@vitest/coverage-v8": "4.1.6",
"oxlint": "1.65.0",
"rimraf": "^6.1.3",
"typescript": "^6.0.3",
"vite": "8.0.10",
"vitest": "4.1.6"
},
"engines": {
"node": ">=24",
"pnpm": ">=11 <12"
},
"packageManager": "pnpm@11.1.2"
}