-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.63 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.63 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
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
{
"name": "node-ffmpeg-concat",
"description": "Concats a list of videos together using ffmpeg with sexy OpenGL transitions.",
"version": "2025.12.16",
"author": {
"email": "simonegauli@gmail.com",
"name": "Simone Gauli"
},
"repository": {
"type": "git",
"url": "https://github.com/Pnlvfx/node-ffmpeg-concat.git"
},
"keywords": [
"ffmpeg",
"fluent-ffmpeg",
"opengl",
"gl",
"gl-transition",
"transition",
"concat",
"concatenate",
"video"
],
"license": "MIT",
"type": "module",
"main": "./dist/ffmpeg-concat.js",
"module": "./dist/ffmpeg-concat.js",
"types": "./dist/ffmpeg-concat.d.ts",
"exports": {
"types": "./dist/ffmpeg-concat.d.ts",
"import": "./dist/ffmpeg-concat.js",
"require": "./dist/ffmpeg-concat.js"
},
"scripts": {
"tsc": "tsc --noEmit",
"unused": "tsx tools/unused.ts",
"test": "rimraf coverage && yarn node --experimental-vm-modules $(yarn bin jest) --verbose --coverage",
"lint": "eslint",
"dev": "tsx --no-cache --watch tools/cli.ts",
"build": "rimraf dist && eslint && tsc -p tsconfig.build.json",
"prepare": "husky",
"prepack": "yarn build",
"prepublishOnly": "yarn test && eslint",
"update": "yarn upgrade-interactive"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"dependencies": {
"get-pixels": "github:scijs/get-pixels",
"gl": "^9.0.0-rc.9",
"gl-buffer": "^2.1.2",
"gl-shader": "^4.3.1",
"gl-texture2d": "^2.1.0",
"gl-transitions": "^1.50.0",
"hh-mm-ss": "^1.2.0",
"ndarray": "^1.0.19",
"p-map": "^7.0.4",
"rmrf": "^2.0.4",
"tempy": "^3.2.0"
},
"devDependencies": {
"@goatjs/node": "^1.78.0",
"@goatjs/node-eslint": "^2.1.0",
"@goatjs/rimraf": "^1.78.0",
"@goatjs/ts-unused-exports": "^1.78.0",
"@goatjs/typescript-config": "^1.78.0",
"@types/fluent-ffmpeg": "^2.1.28",
"@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": "^25.5.0",
"async-ffmpeg": "^2025.8.30",
"eslint": "^10.1.0",
"fluent-ffmpeg": "^2.1.3",
"husky": "^9.1.7",
"jest": "^30.3.0",
"prettier": "^3.8.1",
"sharp": "^0.34.5",
"ts-jest": "^29.4.6",
"ts-node": "^10.9.2",
"tsx": "^4.21.0",
"typescript": "^6.0.2"
},
"peerDependencies": {
"async-ffmpeg": "^2025.7.31",
"fluent-ffmpeg": "*",
"sharp": "*"
},
"packageManager": "yarn@4.13.0+sha512.5c20ba010c99815433e5c8453112165e673f1c7948d8d2b267f4b5e52097538658388ebc9f9580656d9b75c5cc996f990f611f99304a2197d4c56d21eea370e7"
}