-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 1007 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
{
"name": "filesize-analysis",
"version": "1.3.0",
"description": "Github action for filesize analysis",
"main": "./dist/index.js",
"repository": "[email protected]:apple-yagi/filesize-analysis.git",
"author": "apple-yagi <[email protected]>",
"license": "MIT",
"scripts": {
"build": "ncc build src/index.ts --license licenses.txt -o dist",
"format": "prettier --write **/*.ts",
"lint": "eslint . --ext .ts",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "git config --local core.hooksPath .githooks"
},
"dependencies": {
"@actions/core": "^1.7.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.0.1",
"filesize": "^8.0.7"
},
"devDependencies": {
"@types/node": "^17.0.30",
"@vercel/ncc": "^0.33.4",
"brotli-size": "^4.0.0",
"eslint": "^8.14.0",
"lint-staged": "^12.4.1",
"prettier": "^2.6.2",
"typescript": "^4.6.4",
"vitest": "^0.10.0",
"xo": "^0.48.0"
}
}