-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
43 lines (43 loc) Β· 1.53 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
{
"name": "@augu/clippy-action",
"description": "π»ββοΈπ¦ GitHub action to run Clippy, an up-to-date and modern version of actions-rs/clippy",
"version": "1.4.0",
"private": true,
"type": "module",
"main": "build/main.js",
"author": "Noel Towa <cutie@floofy.dev>",
"license": "Apache-2.0",
"repository": "https://github.com/auguwu/clippy-action",
"bugs": "https://github.com/auguwu/clippy-action/issues/new",
"scripts": {
"build": "bun fmt && bun lint && rimraf build && bun build src/main.ts --outfile=build/index.js --minify --target node",
"lint": "bun run scripts/eslint.ts",
"test": "bun test",
"fmt": "bun run scripts/prettier.ts"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@actions/github": "6.0.0",
"@actions/io": "1.1.3",
"@noelware/utils": "2.5.1"
},
"devDependencies": {
"@augu/eslint-config": "5.3.0",
"@augu/tsconfig": "1.2.0",
"@types/bun": "1.1.16",
"@types/eslint": "9.6.1",
"@types/node": "22.10.5",
"@types/prettier": "3.0.0",
"@typescript-eslint/eslint-plugin": "8.19.1",
"@typescript-eslint/parser": "8.19.1",
"@vercel/ncc": "0.38.3",
"colorette": "2.0.20",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"eslint-formatter-codeframe": "7.32.1",
"eslint-plugin-perfectionist": "4.6.0",
"prettier": "3.4.2",
"typescript": "5.7.3"
}
}