diff options
author | Chocobozzz <me@florianbigard.com> | 2019-12-17 16:17:22 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-12-18 10:14:25 +0100 |
commit | 03d641a0d7f996de44ec898ad739bc4050514ba1 (patch) | |
tree | dc8d36a945133fdc91fa279b9c97a22f1ec11465 /client/src/standalone/player/package.json | |
parent | c026a2e67357bd4bd4fcc4c10f8c5cd4749435c9 (diff) | |
download | PeerTube-03d641a0d7f996de44ec898ad739bc4050514ba1.tar.gz PeerTube-03d641a0d7f996de44ec898ad739bc4050514ba1.tar.zst PeerTube-03d641a0d7f996de44ec898ad739bc4050514ba1.zip |
Add embed api build
Diffstat (limited to 'client/src/standalone/player/package.json')
-rw-r--r-- | client/src/standalone/player/package.json | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/client/src/standalone/player/package.json b/client/src/standalone/player/package.json index b056de718..591c3ee3d 100644 --- a/client/src/standalone/player/package.json +++ b/client/src/standalone/player/package.json | |||
@@ -1,6 +1,7 @@ | |||
1 | { | 1 | { |
2 | "name": "@peertube/embed-api", | 2 | "name": "@peertube/embed-api", |
3 | "version": "1.0.0", | 3 | "private": false, |
4 | "version": "0.0.1", | ||
4 | "description": "API to communicate with the PeerTube player embed", | 5 | "description": "API to communicate with the PeerTube player embed", |
5 | "scripts": { | 6 | "scripts": { |
6 | "test": "echo \"Error: no test specified\" && exit 1" | 7 | "test": "echo \"Error: no test specified\" && exit 1" |
@@ -13,11 +14,15 @@ | |||
13 | "peertube", | 14 | "peertube", |
14 | "embed" | 15 | "embed" |
15 | ], | 16 | ], |
16 | "main": "./player.ts", | 17 | "main": "./dist/player.js", |
18 | "types": "./dist/player.d.ts", | ||
17 | "author": "Chocobozzz", | 19 | "author": "Chocobozzz", |
18 | "license": "AGPL-3.0", | 20 | "license": "AGPL-3.0", |
19 | "bugs": { | 21 | "bugs": { |
20 | "url": "https://github.com/Chocobozzz/PeerTube/issues" | 22 | "url": "https://github.com/Chocobozzz/PeerTube/issues" |
21 | }, | 23 | }, |
22 | "homepage": "https://github.com/Chocobozzz/PeerTube#readme" | 24 | "homepage": "https://github.com/Chocobozzz/PeerTube#readme", |
25 | "dependencies": { | ||
26 | "jschannel": "^1.0.2" | ||
27 | } | ||
23 | } | 28 | } |