-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.01 KB
/
package.json
File metadata and controls
35 lines (35 loc) · 1.01 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
{
"name": "peertube-plugin-hardware-transcode-vaapi",
"version": "0.2.9",
"license": "MIT",
"description": "Plugin that adds transcode profiles which use vaapi for hardware acceleration",
"engine": {
"peertube": ">=5.1.0"
},
"keywords": [
"peertube",
"plugin"
],
"homepage": "https://github.com/TheoLeCalvar/peertube-plugin-hardware-transcode-vaapi",
"author": "gdsn",
"bugs": "https://github.com/TheoLeCalvar/peertube-plugin-hardware-transcode-vaapi",
"library": "./dist/main.js",
"files": [
"/dist"
],
"staticDirs": {},
"css": [],
"clientScripts": [],
"translations": {},
"scripts": {
"clean": "rm -rf dist/*",
"prepare": "npm run build",
"build": "npx tsc --build src/tsconfig.json",
"watch": "npx tsc --build src/tsconfig.json --watch"
},
"devDependencies": {
"@peertube/peertube-types": "^5.1.0",
"@tsconfig/node16": "^1.0.3",
"typescript": "^5.0.4"
}
}