-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.23 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.23 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
{
"$schema": "https://json.schemastore.org/package.json",
"name": "tiny-multiplayer-client",
"version": "0.1.0",
"description": "Multiplayer POC using WebRTC",
"scripts": {
"start": "vite --host 127.0.0.1",
"dev": "vite",
"build": "tsc --noEmit && vite build",
"serve": "vite preview",
"test": "bun test src",
"ci": "npm run test",
"clean": "rm -rf dist",
"fmt": "biome check --apply --linter-enabled=true --formatter-enabled=true --organize-imports-enabled=true --skip-errors src"
},
"author": "ivanjermakov",
"license": "MIT",
"devDependencies": {
"@types/events": "^3.0.3",
"@types/jasmine": "4.3.5",
"@types/node": "18.16.20",
"@types/simple-peer": "^9.11.8",
"bun": "1.0.23",
"cross-env": "7.0.3",
"sass": "1.63.6",
"solid-devtools": "0.27.3",
"tslib": "2.6.0",
"typed-emitter": "^2.1.0",
"typescript": "5.5.3",
"vite": "4.3.9",
"vite-plugin-solid": "2.7.0"
},
"dependencies": {
"events": "^3.3.0",
"simple-peer": "^9.11.1",
"solid-js": "1.7.6",
"uint8-util": "^2.2.5"
},
"packageManager": "pnpm@9.4.0"
}