-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1005 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
36
37
38
39
40
{
"private": true,
"scripts": {
"build": "node build.cjs",
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/http-client": "^2.1.1",
"@actions/io": "^1.1.3",
"@depot/actions-public-oidc-client": "^1.0.0",
"@docker/actions-toolkit": "^0.8.0",
"csv-parse": "^5.4.0",
"execa": "^8.0.1"
},
"devDependencies": {
"@tsconfig/node16": "^16.1.0",
"@types/node": "~20.5.1",
"esbuild": "^0.19.2",
"prettier": "^3.0.2",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-pkg": "^0.18.0",
"typescript": "^5.1.6"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"plugins": [
"prettier-plugin-pkg",
"prettier-plugin-organize-imports"
]
}
}