-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 925 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@gotipath/uploader",
"version": "0.0.2",
"description": "Interact with and control an embedded Gotipath Stream Player.",
"author": "Gotipath <https://www.gotipath.com>",
"license": "MIT",
"main": "dist/player.js",
"module": "dist/player.es.js",
"jsnext:main": "dist/player.es.js",
"type": "module",
"directories": {
"lib": "src/"
},
"files": [
"src",
"dist"
],
"scripts": {
"clean": "rm -rf dist",
"build": "rollup --config",
"watch": "rollup --config --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GotipathTeam/player.js.git"
},
"keywords": [
"player",
"playerjs",
"media",
"video"
],
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-terser": "^0.4.4",
"esbuild": "0.20.1",
"rollup": "^4.13.0",
"rollup-plugin-esbuild": "^6.1.1"
},
"dependencies": {}
}