@stampgis/webrtc 1.0.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 ADDED
@@ -0,0 +1,52 @@
1
+ {
2
+ "name": "@stampgis/webrtc",
3
+ "version": "1.0.0",
4
+ "description": "StampGIS 私有地图 SDK,封装 StampUtil 接口库与 core 脚本加载逻辑",
5
+ "main": "dist/index.cjs",
6
+ "module": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "require": "./dist/index.cjs"
13
+ },
14
+ "./assets/*": "./assets/*"
15
+ },
16
+ "files": [
17
+ "dist",
18
+ "assets",
19
+ "README.md"
20
+ ],
21
+ "sideEffects": false,
22
+ "scripts": {
23
+ "dev": "tsup --watch",
24
+ "build": "tsup",
25
+ "prepublishOnly": "npm run build"
26
+ },
27
+ "keywords": [
28
+ "map",
29
+ "stampgis",
30
+ "stamp",
31
+ "pixelstreaming",
32
+ "sdk"
33
+ ],
34
+ "license": "MIT",
35
+ "publishConfig": {
36
+ "access": "public",
37
+ "registry": "https://registry.npmjs.org/"
38
+ },
39
+ "dependencies": {
40
+ "file-saver": "^2.0.5",
41
+ "jszip": "^3.10.1"
42
+ },
43
+ "peerDependencies": {
44
+ "file-saver": "^2.0.5",
45
+ "jszip": "^3.10.1"
46
+ },
47
+ "devDependencies": {
48
+ "@types/file-saver": "^2.0.7",
49
+ "typescript": "^5.4.0",
50
+ "tsup": "^8.0.0"
51
+ }
52
+ }