-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.34 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.34 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
{
"name": "codecmedia",
"version": "1.1.5",
"type": "module",
"description": "Node.js port of CodecMedia for media probing, validation, metadata sidecar persistence, audio extraction, playback workflow simulation, and conversion routing (Image/Video/Audio).",
"license": "Apache-2.0",
"author": {
"name": "TamKungZ_",
"email": "kittiwut.pimpromma@gmail.com"
},
"homepage": "https://codecmedia.tamkungz.me/",
"repository": {
"type": "git",
"url": "git+https://github.com/CodecMediaLib/codecmedia-npm.git"
},
"bugs": {
"url": "https://github.com/CodecMediaLib/codecmedia-npm/issues"
},
"keywords": [
"media",
"codec",
"java-port",
"probe",
"metadata",
"audio",
"video",
"image",
"validation",
"conversion"
],
"engines": {
"node": ">=18"
},
"main": "src/index.js",
"exports": {
".": "./src/index.js"
},
"scripts": {
"test": "node --test ./test/*.test.js",
"test:webm:real": "node --test ./test/webm.integration.test.js",
"test:mp3:real": "node --test ./test/mp3.integration.test.js",
"test:convert": "node --test ./test/convert.test.js",
"test:engine:real": "node --test ./test/engine.integration.test.js"
},
"dependencies": {
"fp-ts": "^2.16.11",
"io-ts": "^2.2.22"
},
"files": [
"src",
"README.md",
"LICENSE"
]
}