-
Notifications
You must be signed in to change notification settings - Fork 107
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.07 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.07 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
{
"name": "@gabber/client",
"version": "0.1.0-alpha19",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup && npm run build-iife",
"build-iife": "rollup -c rollup.config.iife.js",
"lint": "eslint --fix",
"tsc": "tsc"
},
"devDependencies": {
"@eslint/js": "^9.32.0",
"@rollup/plugin-node-resolve": "^15.3.1",
"@rollup/plugin-typescript": "^11.1.6",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.4.0",
"globals": "^16.3.0",
"jiti": "^2.5.1",
"prettier": "^3.5.3",
"rollup": "^4.28.1",
"tsup": "^8.3.5",
"typescript": "^5.7.2",
"typescript-eslint": "^8.38.0"
},
"dependencies": {
"axios": "^1.7.9",
"eventemitter3": "^5.0.1",
"livekit-client": "^2.7.5"
},
"publishConfig": {
"access": "public"
}
}