-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 883 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 883 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
{
"private": true,
"scripts": {
"build": "node build.cjs",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@actions/core": "3.0.0",
"@actions/github": "9.0.0",
"@actions/http-client": "4.0.0",
"@actions/tool-cache": "4.0.0",
"@depot/actions-public-oidc-client": "^1.0.0"
},
"devDependencies": {
"@tsconfig/node24": "24.0.4",
"@types/node": "24.1.0",
"esbuild": "^0.19.2",
"prettier": "^3.0.2",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-pkg": "^0.18.0",
"typescript": "5.9.3"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"plugins": [
"prettier-plugin-pkg",
"prettier-plugin-organize-imports"
]
}
}