@byteplus/vepusher 1.1.1-rc.0 → 2.0.1-rc.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,19 +1,16 @@
1
1
  {
2
2
  "name": "@byteplus/vepusher",
3
- "version": "1.1.1-rc.0",
4
- "main": "index.js",
5
- "module": "./dist/vepusher.es.js",
6
- "typings": "./es/index.d.ts",
7
- "license": "SEE LICENSE IN LICENSE",
3
+ "version": "2.0.1-rc.0",
4
+ "main": "./dist/index.es.js",
5
+ "module": "./dist/index.es.js",
6
+ "typings": "./dist/index.es.d.ts",
7
+ "license": "BSD-3-Clause",
8
8
  "files": [
9
9
  "dist",
10
- "es"
10
+ "!**/*.map"
11
11
  ],
12
12
  "type": "module",
13
- "description": "web push sdk ",
14
- "keywords": [
15
- "web",
16
- "sdk"
17
- ],
18
- "author": "hetanhong"
13
+ "description": "web push sdk",
14
+ "keywords": [],
15
+ "author": ""
19
16
  }
package/LICENSE DELETED
@@ -1,20 +0,0 @@
1
- ## [@volcengine/vepusher] License
2
-
3
- Copyright 2021 Beijing Volcanoengine Technology Ltd. All Rights Reserved.
4
-
5
- The @volcengine/vepusher was developed by Beijing Volcanoengine Technology Ltd. (hereinafter
6
- “Volcanoengine”). Any copyright or patent right is owned by and proprietary material of the
7
- Volcanoengine.
8
-
9
- @volcengine/vepusher is available under the @volcengine/vepusher and licensed under the
10
- commercial license. Customers can contact service@volcengine.com for commercial licensing
11
- options. Here is also a link to subscription services agreement:
12
- https://www.volcengine.com/docs/6469.
13
-
14
- Without Volcanoengine's prior written permission, any use of @volcengine/vepusher, in particular
15
- any use for commercial purposes, is prohibited. This includes, without limitation, incorporation in a
16
- commercial product, use in a commercial service, or production of other artefacts for commercial
17
- purposes.
18
-
19
- Without Volcanoengine's prior written permission, the @volcengine/vepusher may not be
20
- reproduced, modified and/or made available in any form to any third party.
package/README.md DELETED
@@ -1,18 +0,0 @@
1
- ## install
2
-
3
- ```bash
4
- yarn add @volcengine/vepusher
5
- npm install @volcengine/vepusher
6
- ```
7
-
8
- ## quick start
9
-
10
- ```javascript
11
- const livePusher = new VePusher()
12
-
13
- // ScreenCapture
14
- livePusher.capture.startScreenCapture()
15
-
16
- // push rtm
17
- livePusher.pusher.startPush(sdpUrl)
18
- ```