-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
104 lines (104 loc) · 3.1 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "node-ffmpeg-concat",
"description": "Concats a list of videos together using ffmpeg with sexy OpenGL transitions.",
"version": "2024.11.13",
"author": {
"email": "[email protected]",
"name": "Simone Gauli"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Pnlvfx/node-ffmpeg-concat.git"
},
"license": "MIT",
"type": "module",
"main": "./dist/cjs/ffmpeg-concat.js",
"module": "./dist/esm/ffmpeg-concat.js",
"types": "./dist/esm/ffmpeg-concat.d.ts",
"engines": {
"node": ">=14"
},
"keywords": [
"ffmpeg",
"fluent-ffmpeg",
"opengl",
"gl",
"gl-transition",
"transition",
"concat",
"concatenate",
"video"
],
"exports": {
"types": "./dist/esm/ffmpeg-concat.d.ts",
"import": "./dist/esm/ffmpeg-concat.js",
"require": "./dist/cjs/ffmpeg-concat.js"
},
"scripts": {
"tsc": "tsc --noEmit true",
"generate:package.json": "tsx ./tools/generate-commonjs-package-json.ts dist/cjs/package.json",
"dev": "tsc -p tsconfig.build.json -w & node --watch ./dist/esm/cli.js",
"unused": "tsx ./tools/unused.ts",
"test": "rimraf coverage && NODE_OPTIONS=--experimental-vm-modules jest --verbose --coverage",
"lint": "eslint",
"build": "rimraf dist && eslint && npm run build:esm && npm run build:cjs && npm run generate:package.json",
"build:esm": "tsc -p tsconfig.build.json",
"build:cjs": "tsc -p tsconfig.build.json --module CommonJS --moduleResolution Node --outDir dist/cjs",
"prepare": "npm run build",
"prepublishOnly": "npm run test && eslint"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"fs-extra": "^11.2.0",
"get-pixels": "github:scijs/get-pixels",
"gl": "^8.1.6",
"gl-buffer": "^2.1.2",
"gl-shader": "^4.3.1",
"gl-texture2d": "^2.1.0",
"gl-transitions": "^1.43.0",
"hh-mm-ss": "^1.2.0",
"ndarray": "^1.0.19",
"p-map": "^7.0.2",
"rmrf": "^2.0.4",
"tempy": "^3.1.0"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@types/eslint__js": "^8.42.3",
"@types/fluent-ffmpeg": "^2.1.27",
"@types/fs-extra": "^11.0.4",
"@types/get-pixels": "^3.3.4",
"@types/gl": "^6.0.5",
"@types/gl-shader": "^4.2.5",
"@types/gl-texture2d": "^2.1.6",
"@types/hh-mm-ss": "^1.2.3",
"@types/node": "^22.9.0",
"async-ffmpeg": "^2024.11.13",
"coraline": "github:Pnlvfx/coraline",
"eslint": "^9.14.0",
"eslint-plugin-sonarjs": "^2.0.4",
"eslint-plugin-unicorn": "^56.0.0",
"fluent-ffmpeg": "^2.1.3",
"globals": "^15.12.0",
"husky": "^9.1.6",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rimraf": "^6.0.1",
"sharp": "^0.33.5",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"typescript-eslint": "^8.14.0"
},
"peerDependencies": {
"async-ffmpeg": "^2024.10.8",
"fluent-ffmpeg": "*",
"sharp": "*"
},
"packageManager": "[email protected]+sha512.856941ef22665d2f3e41c04e8d86ed757ef057fb2bc35011698bfa988ef5817cc1cdd28bb883e7f23f0568c75de5544d4750211d4276b9ba6d55369eb207a549"
}