-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
48 lines (48 loc) · 1.38 KB
/
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
42
43
44
45
46
47
48
{
"name": "@webtor/platform-sdk-js",
"version": "0.2.18",
"description": "SDK for online torrent streaming",
"main": "src/index.js",
"repository": {
"type": "git",
"url": "https://github.com/webtor-io/platform-sdk-js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack --mode production",
"watch": "webpack --watch",
"protoc": "ls proto/ | xargs -I{} protoc --plugin='protoc-gen-ts=./node_modules/.bin/protoc-gen-ts' --js_out='import_style=commonjs_strict,binary:.' --ts_out='service=grpc-web:.' ./proto/{}/{}.proto"
},
"keywords": [
"webtor",
"torrent",
"streaming",
"sdk"
],
"homepage": "https://webtor.io",
"author": "Pavel Tatarskiy",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.7.7",
"@babel/plugin-proposal-class-properties": "^7.7.4",
"@babel/plugin-transform-runtime": "^7.7.6",
"@babel/preset-env": "^7.7.7",
"babel-loader": "^8.0.6",
"webpack": "^4.41.5",
"webpack-cli": "^3.3.10"
},
"dependencies": {
"@babel/runtime": "^7.7.7",
"@improbable-eng/grpc-web": "^0.12.0",
"debug": "^4.3.3",
"fetch-retry": "^3.1.0",
"google-protobuf": "^3.11.2",
"iso-639-1": "^2.1.0",
"lodash": "^4.17.15",
"md5": "^2.3.0",
"mime": "^2.4.4",
"parse-torrent": "^7.0.1",
"path-parse": "^1.0.6",
"url-parse": "^1.4.7"
}
}