-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.68 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.68 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "async-ffmpeg",
"description": "Node interaction with ffmpeg in node.js promise style.",
"version": "2025.8.30",
"author": {
"email": "simonegauli@gmail.com",
"name": "Simone Gauli"
},
"repository": {
"type": "git",
"url": "https://github.com/Pnlvfx/async-ffmpeg.git"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/ffmpeg.d.ts",
"import": "./dist/ffmpeg.js",
"require": "./dist/ffmpeg.js"
},
"./ffprobe": {
"types": "./dist/ffprobe.d.ts",
"import": "./dist/ffprobe.js",
"require": "./dist/ffprobe.js"
},
"./screen-capture": {
"types": "./dist/screen-capture.d.ts",
"import": "./dist/screen-capture.js",
"require": "./dist/screen-capture.js"
}
},
"scripts": {
"tsc": "tsc --noEmit",
"unused": "node tools/unused.ts",
"test": "",
"lint": "eslint",
"build": "rimraf dist && eslint && tsc -p tsconfig.build.json",
"prepare": "husky",
"prepack": "yarn build",
"prepublishOnly": "yarn test && yarn lint",
"update": "yarn upgrade-interactive"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"devDependencies": {
"@goatjs/node": "^1.61.0",
"@goatjs/node-eslint": "^1.36.0",
"@goatjs/rimraf": "^1.61.0",
"@goatjs/ts-unused-exports": "1.61.0",
"@goatjs/typescript-config": "^1.61.0",
"@types/node": "^25.0.10",
"eslint": "^9.39.2",
"husky": "^9.1.7",
"prettier": "^3.8.1",
"typescript": "^5.9.3"
},
"packageManager": "yarn@4.12.0+sha512.f45ab632439a67f8bc759bf32ead036a1f413287b9042726b7cc4818b7b49e14e9423ba49b18f9e06ea4941c1ad062385b1d8760a8d5091a1a31e5f6219afca8"
}