-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 loc) · 1.73 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
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.1.30",
"author": {
"email": "[email protected]",
"name": "Simone Gauli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pnlvfx/async-ffmpeg.git"
},
"license": "MIT",
"type": "module",
"module": "./dist/ffmpeg.js",
"types": "./dist/ffmpeg.d.ts",
"exports": {
"types": "./dist/ffmpeg.d.ts",
"import": "./dist/ffmpeg.js"
},
"scripts": {
"tsc": "tsc --noEmit true",
"unused": "node ./tools/unused.ts",
"test": "rimraf coverage && jest --coverage",
"lint": "eslint",
"dev": "tsc -p tsconfig.build.json -w & node --watch ./dist/ffmpeg.js",
"build": "rimraf dist && eslint && tsc -p tsconfig.build.json",
"prepare": "husky",
"prepack": "yarn build",
"prepublishOnly": "yarn test && yarn lint"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"devDependencies": {
"@eslint/js": "^9.19.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.12.0",
"coraline": "github:Pnlvfx/coraline",
"eslint": "^9.19.0",
"eslint-plugin-sonarjs": "^3.0.1",
"eslint-plugin-unicorn": "^56.0.1",
"globals": "^15.14.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"ts-unused-exports": "^11.0.1",
"typescript": "^5.7.3",
"typescript-eslint": "^8.22.0"
},
"peerDependencies": {
"coraline": "*"
},
"packageManager": "[email protected]+sha512.5383cc12567a95f1d668fbe762dfe0075c595b4bfff433be478dbbe24e05251a8e8c3eb992a986667c1d53b6c3a9c85b8398c35a960587fbd9fa3a0915406728"
}