diff options
author | Chocobozzz <me@florianbigard.com> | 2019-12-17 15:19:42 +0100 |
---|---|---|
committer | Chocobozzz <me@florianbigard.com> | 2019-12-18 10:14:24 +0100 |
commit | 478924a044f6a7b0fb5156c3e4a0e8ef4ed30a4a (patch) | |
tree | 7c3f253ab79074c76a6a6d28c906b5531d7f4b0d /client | |
parent | 6377a9f2b0f762be9af61f46b4f0a9efd0c4b7c2 (diff) | |
download | PeerTube-478924a044f6a7b0fb5156c3e4a0e8ef4ed30a4a.tar.gz PeerTube-478924a044f6a7b0fb5156c3e4a0e8ef4ed30a4a.tar.zst PeerTube-478924a044f6a7b0fb5156c3e4a0e8ef4ed30a4a.zip |
Add package.json for embed api
Diffstat (limited to 'client')
-rw-r--r-- | client/package.json | 3 | ||||
-rw-r--r-- | client/src/standalone/player/README.md | 3 | ||||
-rw-r--r-- | client/src/standalone/player/package.json | 22 |
3 files changed, 26 insertions, 2 deletions
diff --git a/client/package.json b/client/package.json index 7a805ad17..53aedfebd 100644 --- a/client/package.json +++ b/client/package.json | |||
@@ -2,7 +2,7 @@ | |||
2 | "name": "peertube-client", | 2 | "name": "peertube-client", |
3 | "version": "2.0.0", | 3 | "version": "2.0.0", |
4 | "private": true, | 4 | "private": true, |
5 | "licence": "GPLv3", | 5 | "license": "AGPL-3.0", |
6 | "author": { | 6 | "author": { |
7 | "name": "Chocobozzz", | 7 | "name": "Chocobozzz", |
8 | "email": "chocobozzz@cpy.re", | 8 | "email": "chocobozzz@cpy.re", |
@@ -22,7 +22,6 @@ | |||
22 | "webdriver-manager": "webdriver-manager", | 22 | "webdriver-manager": "webdriver-manager", |
23 | "ngx-extractor": "ngx-extractor" | 23 | "ngx-extractor": "ngx-extractor" |
24 | }, | 24 | }, |
25 | "license": "GPLv3", | ||
26 | "typings": "*.d.ts", | 25 | "typings": "*.d.ts", |
27 | "resolutions": { | 26 | "resolutions": { |
28 | "video.js": "^7", | 27 | "video.js": "^7", |
diff --git a/client/src/standalone/player/README.md b/client/src/standalone/player/README.md new file mode 100644 index 000000000..5cb5a1d10 --- /dev/null +++ b/client/src/standalone/player/README.md | |||
@@ -0,0 +1,3 @@ | |||
1 | # @peertube/embed-api | ||
2 | |||
3 | See https://docs.joinpeertube.org/#/api-embed-player | ||
diff --git a/client/src/standalone/player/package.json b/client/src/standalone/player/package.json new file mode 100644 index 000000000..a521515e5 --- /dev/null +++ b/client/src/standalone/player/package.json | |||
@@ -0,0 +1,22 @@ | |||
1 | { | ||
2 | "name": "@peertube/embed-api", | ||
3 | "version": "1.0.0", | ||
4 | "description": "API to communicate with the PeerTube player embed", | ||
5 | "scripts": { | ||
6 | "test": "echo \"Error: no test specified\" && exit 1" | ||
7 | }, | ||
8 | "repository": { | ||
9 | "type": "git", | ||
10 | "url": "git+https://github.com/Chocobozzz/PeerTube.git" | ||
11 | }, | ||
12 | "keywords": [ | ||
13 | "peertube", | ||
14 | "embed" | ||
15 | ], | ||
16 | "author": "Chocobozzz", | ||
17 | "license": "AGPL-3.0", | ||
18 | "bugs": { | ||
19 | "url": "https://github.com/Chocobozzz/PeerTube/issues" | ||
20 | }, | ||
21 | "homepage": "https://github.com/Chocobozzz/PeerTube#readme" | ||
22 | } | ||