diff options
Diffstat (limited to 'client/src/standalone/embed-player-api/package.json')
-rw-r--r-- | client/src/standalone/embed-player-api/package.json | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/client/src/standalone/embed-player-api/package.json b/client/src/standalone/embed-player-api/package.json new file mode 100644 index 000000000..b549fbf52 --- /dev/null +++ b/client/src/standalone/embed-player-api/package.json | |||
@@ -0,0 +1,28 @@ | |||
1 | { | ||
2 | "name": "@peertube/embed-api", | ||
3 | "private": false, | ||
4 | "version": "0.0.6", | ||
5 | "description": "API to communicate with the PeerTube player embed", | ||
6 | "scripts": { | ||
7 | "build": "../../../node_modules/.bin/tsc && ../../../node_modules/.bin/webpack --mode production --config ./webpack.config.js" | ||
8 | }, | ||
9 | "repository": { | ||
10 | "type": "git", | ||
11 | "url": "git+https://github.com/Chocobozzz/PeerTube.git" | ||
12 | }, | ||
13 | "keywords": [ | ||
14 | "peertube", | ||
15 | "embed" | ||
16 | ], | ||
17 | "main": "./dist/player.js", | ||
18 | "types": "./dist/player.d.ts", | ||
19 | "author": "Chocobozzz", | ||
20 | "license": "AGPL-3.0", | ||
21 | "bugs": { | ||
22 | "url": "https://github.com/Chocobozzz/PeerTube/issues" | ||
23 | }, | ||
24 | "homepage": "https://github.com/Chocobozzz/PeerTube#readme", | ||
25 | "dependencies": { | ||
26 | "jschannel": "^1.0.2" | ||
27 | } | ||
28 | } | ||