aboutsummaryrefslogtreecommitdiffhomepage
path: root/shared/models/plugins/plugin-package-json.model.ts
blob: d5aa9017992aef2dfa7aa638a20659a026ec4d9c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
export type PluginPackageJson = {
  name: string
  version: string
  description: string
  engine: { peertube: string },

  homepage: string,
  author: string,
  bugs: string,
  library: string,

  staticDirs: { [ name: string ]: string }
  css: string[]

  clientScripts: { script: string, scopes: string[] }[]
}