-
Notifications
You must be signed in to change notification settings - Fork 42
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.76 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.76 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@100mslive/hms-whiteboard",
"author": "100ms",
"license": "MIT",
"version": "0.2.5",
"repository": {
"type": "git",
"url": "https://github.com/100mslive/web-sdks.git",
"directory": "packages/hms-whiteboard"
},
"main": "dist/index.cjs.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
},
"./index.css": "./dist/index.css"
},
"sideEffects": false,
"scripts": {
"prestart": "rm -rf dist",
"start": "node ../../scripts/dev.js",
"build": "node ../../scripts/build.js && yarn types:build",
"types:build": "tsc -p tsconfig.json",
"build:proto": "protoc --ts_opt long_type_string --ts_out ./src/grpc -I=./proto proto/*proto",
"lint": "eslint -c .eslintrc src",
"lint:fix": "eslint -c .eslintrc src --fix",
"format": "prettier -w src/**"
},
"dependencies": {
"@protobuf-ts/grpcweb-transport": "^2.9.1",
"@protobuf-ts/runtime": "^2.9.1",
"@protobuf-ts/runtime-rpc": "^2.9.1",
"@tldraw/tldraw": "2.0.0-alpha.19"
},
"peerDependencies": {
"react": ">=17.0.2 <19.0.0",
"react-dom": ">=17.0.2 <19.0.0"
},
"devDependencies": {
"@protobuf-ts/plugin": "^2.9.1",
"@types/node": "^20.12.5",
"@types/react": "^18.1.0",
"@types/react-dom": "^18.1.0",
"eslint": "^8.53.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.4",
"grpc-tools": "^1.13.1",
"react": "^18.1.0",
"react-dom": "^18.1.0",
"typescript": "^5.2.2"
},
"keywords": [
"whiteboard",
"tldraw",
"streaming",
"video",
"webrtc",
"conferencing",
"100ms"
]
}