-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 833 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 833 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
{
"name": "setup-adc",
"description": "Setup the API7 ADC CLI tool in GitHub Actions",
"version": "0.1.0",
"private": true,
"author": "API7",
"license": "Apache-2.0",
"scripts": {
"build": "ncc build src/main.ts --out dist",
"format": "prettier --write 'src/**/*.ts' '*.json' '*.yml' '*.md' '.github/**/*.yml'",
"format:check": "prettier --check 'src/**/*.ts' '*.json' '*.yml' '*.md' '.github/**/*.yml'",
"prepublishOnly": "pnpm run build"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.0",
"@actions/tool-cache": "^2.0.2"
},
"devDependencies": {
"@trivago/prettier-plugin-sort-imports": "^6.0.2",
"@types/node": "^22.0.0",
"@vercel/ncc": "^0.38.3",
"prettier": "^3.8.3",
"typescript": "^5.7.0"
},
"packageManager": "pnpm@10.0.0"
}