forked from hashicorp-contrib/setup-packer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 981 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
{
"name": "setup-packer",
"version": "2.0.0",
"author": "Sora Morimoto <sora@morimoto.io>",
"private": true,
"scripts": {
"fmt": "prettier --write .",
"fmt:check": "prettier --check .",
"typecheck": "tsc",
"lint": "eslint \"**/*.ts\" --cache",
"build": "ncc build src/index.ts --license=LICENSE.txt"
},
"license": "ISC",
"dependencies": {
"@actions/core": "1.9.1",
"@actions/exec": "1.1.1",
"@actions/github": "5.0.3",
"@actions/io": "1.1.2",
"@actions/tool-cache": "2.0.1",
"@vercel/ncc": "0.34.0"
},
"devDependencies": {
"@types/node": "18.7.14",
"@typescript-eslint/eslint-plugin": "5.36.0",
"@typescript-eslint/parser": "5.36.0",
"eslint": "8.23.0",
"eslint-config-prettier": "8.5.0",
"eslint-plugin-import": "2.26.0",
"eslint-plugin-prettier": "4.2.1",
"eslint-plugin-simple-import-sort": "7.0.0",
"prettier": "2.7.1",
"typescript": "4.8.2",
"webpack": "5.74.0"
}
}