-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 995 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 ."
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/github": "^6.0.0",
"@actions/http-client": "^2.2.0",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"@depot/actions-public-oidc-client": "^1.0.0",
"csv-parse": "^5.5.2",
"execa": "^8.0.1",
"handlebars": "^4.7.8"
},
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@types/node": "~20.8.9",
"esbuild": "^0.19.5",
"prettier": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.3",
"prettier-plugin-pkg": "^0.18.0",
"typescript": "^5.2.2"
},
"prettier": {
"bracketSpacing": false,
"printWidth": 120,
"semi": false,
"singleQuote": true,
"trailingComma": "all",
"plugins": [
"prettier-plugin-pkg",
"prettier-plugin-organize-imports"
]
}
}