-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.47 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 1.47 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
{
"name": "peerix",
"version": "0.7.0",
"description": "A front-end library for creating peer-to-peer WebRTC applications with pluggable signaling drivers and add-ons.",
"author": "Anton Skshidlevsky <anton@meefik.dev>",
"license": "Apache-2.0",
"homepage": "https://peerix.dev",
"repository": {
"type": "git",
"url": "https://github.com/meefik/peerix.git"
},
"keywords": [
"webrtc",
"p2p",
"peer-to-peer",
"signaling",
"real-time",
"communication",
"browser",
"data-channels",
"frontend",
"streaming"
],
"type": "module",
"main": "dist/peerix.esm.js",
"types": "dist/index.d.ts",
"module": "dist/peerix.esm.js",
"unpkg": "dist/peerix.umd.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/peerix.esm.js",
"default": "./dist/peerix.esm.js"
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"dev": "vite dev",
"typecheck": "tsc -p tsconfig.json",
"build": "vite build && tsc -p tsconfig.build.json",
"test:unit": "node --import tsx --test 'src/**/*.test.ts'",
"test:e2e": "playwright test",
"test": "npm run test:unit && npm run test:e2e",
"docs": "typedoc"
},
"devDependencies": {
"@playwright/test": "^1.62.0",
"@skillit/typedoc": "^1.1.1",
"@types/node": "^26.1.1",
"tsx": "^4.23.1",
"typedoc": "^0.28.20",
"typedoc-plugin-mermaid": "^1.12.0",
"typescript": "^6.0.3",
"vite": "^8.1.5"
}
}