-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 921 Bytes
/
Copy pathpackage.json
File metadata and controls
28 lines (28 loc) · 921 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
{
"name": "setup-zigflow",
"version": "0.0.0",
"description": "Set up your GitHub Actions workflow with a specific version of Zigflow",
"author": "Zigflow authors <https://github.com/zigflow/setup-zigflow/graphs/contributors>",
"private": true,
"main": "./dist/index.mjs",
"license": "Apache-2.0",
"scripts": {
"build": "ncc build src/index.mjs -o dist --license LICENSE",
"format": "prettier --write \"**/*.?(c|m){j,t}s\"",
"lint": "eslint \"**/*.?(c|m)js\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/github": "^9.1.1",
"@actions/tool-cache": "^4.0.0"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^5.2.2",
"@vercel/ncc": "^0.38.4",
"eslint": "^9.0.0",
"eslint-config-prettier": "^10.0.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5"
}
}