-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.23 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.23 KB
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
{
"name": "setup-ffmpeg",
"version": "3.0.0",
"private": true,
"description": "Setup ffmpeg action",
"scripts": {
"build": "esbuild src/action.js --bundle --platform=node --target=es2024 --format=cjs --outdir=dist",
"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": "^7.0.6",
"@types/jest": "^29.5.11",
"@types/node": "^24.13.2",
"@types/semver": "^7.5.6",
"@types/uuid": "^9.0.7",
"esbuild": "^0.28.0",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"prettier": "^3.1.1",
"typescript": "^5.3.3"
},
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/tool-cache": "^4.0.0",
"semver": "^7.5.4",
"uuid": "^9.0.1"
}
}