]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blob - shared/models/plugins/plugin-package-json.model.ts
4520ee181fe75c83f44555076df1cab7558e9830
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / plugin-package-json.model.ts
1 export type PluginPackageJson = {
2 name: string
3 description: string
4 engine: { peertube: string },
5
6 homepage: string,
7 author: string,
8 bugs: string,
9 library: string,
10
11 staticDirs: { [ name: string ]: string }
12 css: string[]
13
14 clientScripts: { script: string, scopes: string[] }[]
15 }