-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) Β· 1.65 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
44
45
46
47
48
49
50
51
52
{
"name": "@noelware/setup-protoc",
"description": "π»ββοΈπ₯ GitHub action for setting up the Protocol Buffers compiler",
"version": "1.2.0",
"private": true,
"main": "./build/action.js",
"type": "module",
"license": "MIT",
"author": "Noelware, LLC. <[email protected]>",
"repository": "https://github.com/Noelware/setup-protoc",
"bugs": "https://github.com/Noelware/setup-protoc/issues/new",
"keywords": [
"setup-protoc",
"protobuf",
"protoc",
"protobuf-compiler"
],
"scripts": {
"build": "bun run fmt && bun run lint && bun run scripts/build.ts",
"lint": "bun run scripts/eslint.ts",
"test": "vitest run",
"fmt": "bun run scripts/prettier.ts"
},
"dependencies": {
"@actions/core": "1.11.1",
"@actions/exec": "1.1.1",
"@actions/http-client": "2.2.3",
"@actions/tool-cache": "2.0.1",
"semver": "7.6.3"
},
"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",
"@types/semver": "7.5.8",
"@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",
"globby": "14.0.2",
"prettier": "3.4.2",
"rimraf": "6.0.1",
"typescript": "5.7.3",
"vitest": "2.1.8"
}
}