-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (45 loc) · 1.1 KB
/
package.json
File metadata and controls
48 lines (45 loc) · 1.1 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
{
"type": "module",
"name": "xconn-webrtc-js",
"version": "1.0.0",
"description": "XConn WebRTC JS",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"scripts": {
"prepare": "npm run build",
"build": "rollup -c",
"lint": "eslint . --ext .ts",
"format": "eslint . --ext .ts --fix"
},
"dependencies": {
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-node-resolve": "^16.0.3",
"@rollup/plugin-typescript": "^12.3.0",
"rollup": "^4.59.0",
"rollup-plugin-dts": "^6.3.0",
"uuid": "^13.0.0"
},
"peerDependencies": {
"xconn": "^0.1.1"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.3",
"xconn": "https://github.com/xconnio/xconn-js.git#1ac1bf928da9a910e6c8f5632e3980ce55d5a037"
},
"author": "Mahad Munir <mahad@xconn.io>",
"license": "MIT"
}