-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
46 lines (46 loc) · 1.2 KB
/
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
41
42
43
44
45
46
{
"name": "setup-ffmpeg",
"version": "3.0.0",
"private": true,
"description": "Setup ffmpeg action",
"scripts": {
"build": "ncc build src/action.js",
"test": "jest",
"format": "prettier --no-error-on-unmatched-pattern --config .prettierrc.json --write \"{src,test}/**/*.js\"",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/FedericoCarboni/setup-ffmpeg.git"
},
"keywords": [],
"author": {
"name": "Federico Carboni",
"email": "fr3ddydev@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/FedericoCarboni/setup-ffmpeg/issues"
},
"homepage": "https://github.com/FedericoCarboni/setup-ffmpeg#readme",
"devDependencies": {
"@octokit/core": "^5.0.2",
"@types/jest": "^29.5.11",
"@types/node": "^20.10.4",
"@types/semver": "^7.5.6",
"@types/uuid": "^9.0.7",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1",
"semver": "^7.5.4",
"undici": "^6.0.1",
"uuid": "^9.0.1"
}
}