-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.21 KB
/
package.json
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
69
70
71
72
73
74
{
"name": "cocast",
"private": true,
"version": "0.0.0",
"type": "module",
"author": "printfer",
"description": "CoCast is a free and open-source media casting application that allows you to watch your favorite videos with friends from anywhere in the world! With CoCast, you can invite your friends and watch videos together in real-time.",
"keywords": [
"Media casting",
"Real-time video watching",
"React",
"TypeScript",
"WebRTC",
"Vite",
"Peer-to-peer technology",
"Cross-platform support",
"Customizable playlist",
"Link and QR code sharing",
"User-friendly interface",
"Light and dark themes",
"Modern UI design",
"Accessibility features"
],
"license": "AGPL-3.0-only",
"scripts": {
"dev": "vite --open",
"build": "tsc && vite build",
"preview": "vite preview",
"format": "prettier --write .",
"format-check": "prettier --check .",
"lint": "eslint --fix .",
"lint-check": "eslint .",
"test": "vitest",
"coverage": "vitest run --coverage",
"prepare": "simple-git-hooks"
},
"dependencies": {
"@fontsource/fira-code": "^4.5.13",
"@fontsource/open-sans": "^4.5.14",
"material-symbols": "^0.5.0",
"peerjs": "^1.4.7",
"plyr-react": "^5.1.2",
"qrcode": "^1.5.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"webtorrent": "^2.0.14"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.16.5",
"@testing-library/react": "^14.0.0",
"@testing-library/user-event": "^14.4.3",
"@types/qrcode": "^1.5.0",
"@types/react": "^18.0.26",
"@types/react-dom": "^18.0.9",
"@types/webtorrent": "^0.109.3",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@vitejs/plugin-react-swc": "^3.0.0",
"@vitest/coverage-c8": "^0.30.1",
"eslint": "^8.32.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-react": "^7.32.1",
"jsdom": "^21.0.0",
"lint-staged": "^13.2.0",
"prettier": "^2.8.3",
"simple-git-hooks": "^2.8.1",
"typescript": "^5.0.4",
"vite": "^4.0.0",
"vite-plugin-eslint": "^1.8.1",
"vite-plugin-pwa": "^0.14.4",
"vitest": "^0.30.1"
}
}