-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.75 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
{
"name": "peertube-plugin-chapters",
"description": "PeerTube chapter plugin",
"license": "(MIT OR Apache-2.0)",
"version": "1.1.3",
"author": "samlich",
"homepage": "https://samli.ch/projects/peertube-chapters",
"repository": "https://github.com/samlich/peertube-plugin-chapters",
"bugs": "https://github.com/samlich/peertube-plugin-chapters/issues",
"engine": {
"peertube": ">=4.2.0"
},
"clientScripts": [
{
"script": "dist/client/video-watch-client-plugin.js",
"scopes": [
"video-watch",
"embed"
]
},
{
"script": "dist/client/video-edit-client-plugin.js",
"scopes": [
"video-edit"
]
}
],
"css": [
"assets/style.css"
],
"dependencies": {
"marked": "^4.3",
"short-uuid": "^4.2"
},
"devDependencies": {
"@babel/core": "^7.21",
"@babel/preset-env": "^7.21",
"@peertube/peertube-types": "^5.1",
"@tsconfig/node12": "^1.0",
"@types/express": "^4.17",
"@types/jest": "^29.5",
"@types/marked": "^4.0.7",
"@types/video.js": "^7.3",
"babel-loader": "^9.1",
"jest": "^29.5",
"npm-run-all": "^4.1",
"ts-jest": "^29.0",
"ts-loader": "^9.4",
"ts-standard": "^12.0",
"typescript": "^5.0",
"webpack": "^5.77",
"webpack-cli": "^5.0"
},
"keywords": [
"peertube",
"plugin"
],
"library": "./dist/server/main.js",
"scripts": {
"clean:light": "rm -rf dist/*",
"prepare": "npm run build",
"build:webpack": "webpack --mode production",
"build:server": "npx -p typescript tsc --build server/tsconfig.json",
"build": "npm-run-all -s clean:light -p build:webpack build:server",
"test": "jest"
},
"translations": {
"de-DE": "./languages/de.json"
},
"staticDirs": {}
}