-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
124 lines (124 loc) · 3.02 KB
/
package.json
File metadata and controls
124 lines (124 loc) · 3.02 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
{
"name": "node-webcodecs",
"version": "1.0.0",
"description": "Native WebCodecs API implementation for Node.js using FFmpeg",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "npm run build:native && npm run build:ts",
"build:native": "cmake-js compile",
"build:ts": "tsc",
"rebuild": "cmake-js rebuild",
"test": "jest --forceExit",
"test:spec": "vitest run --config vitest.config.ts",
"test:spec:watch": "vitest --config vitest.config.ts",
"test:spec:browser": "vitest run --config vitest.browser.config.ts",
"test:integration": "node test/integration/encode-decode.test.js && node test/integration/audio-encode-decode.test.js && node test/integration/vp8-vp9-encode-decode.test.js && node test/integration/hevc-av1-encode-decode.test.js",
"prebuild": "prebuildify --napi --strip",
"prebuild:ci": "prebuildify-ci",
"install": "node-gyp-build || cmake-js compile",
"prepublishOnly": "npm run build:ts && npm test",
"lint": "eslint src/**/*.ts",
"docs:generate": "typedoc",
"docs:dev": "cd docs && mintlify dev",
"docs:build": "npm run docs:generate && cd docs && mintlify build"
},
"keywords": [
"webcodecs",
"video",
"audio",
"encoder",
"decoder",
"ffmpeg",
"h264",
"hevc",
"vp8",
"vp9",
"av1",
"aac",
"opus",
"media",
"hdr",
"alpha",
"svc",
"image-decoder",
"video-processing",
"transcoding",
"video-encoder",
"video-decoder",
"audio-encoder",
"audio-decoder",
"hardware-acceleration",
"videotoolbox",
"nvenc",
"node",
"native",
"w3c",
"codec",
"mp4",
"streaming"
],
"author": "caseymanos",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/caseymanos/node-webcodecs.git"
},
"bugs": {
"url": "https://github.com/caseymanos/node-webcodecs/issues"
},
"homepage": "https://github.com/caseymanos/node-webcodecs#readme",
"engines": {
"node": ">=18.0.0"
},
"os": [
"darwin",
"linux",
"win32"
],
"cpu": [
"x64",
"arm64"
],
"files": [
"dist/",
"native/",
"prebuilds/",
"CMakeLists.txt",
"README.md",
"examples/",
"binding.gyp",
"llms.txt",
"llms-full.txt"
],
"dependencies": {
"node-addon-api": "^7.0.0",
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"@types/jest": "^29.0.0",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@vitest/browser": "^4.0.15",
"@vitest/browser-playwright": "^4.0.15",
"cmake-js": "^7.3.0",
"eslint": "^8.0.0",
"jest": "^29.0.0",
"jsqr": "^1.4.0",
"playwright": "^1.57.0",
"prebuildify": "^6.0.1",
"prebuildify-ci": "^1.0.5",
"qrcode": "^1.5.4",
"ts-jest": "^29.0.0",
"typedoc": "^0.28.15",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.3.0",
"vitest": "^4.0.15"
},
"binary": {
"napi_versions": [
8
]
}
}