-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.11 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.11 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
{
"name": "@colyseus/react",
"version": "0.1.14",
"type": "module",
"scripts": {
"dev": "tsdown --watch --format esm,cjs",
"build": "tsdown --format esm,cjs",
"lint": "eslint .",
"test": "vitest",
"prepublishOnly": "npm run build"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"peerDependencies": {
"@colyseus/schema": "^4.0.8",
"@colyseus/sdk": "^0.17.26",
"@colyseus/shared-types": "^0.17.6",
"react": ">=18.3.1"
},
"devDependencies": {
"@colyseus/schema": "^4.0.8",
"@colyseus/sdk": "^0.17.26",
"@eslint/js": "^9.9.0",
"@testing-library/react": "^16.3.1",
"@types/react": "^18.3.3",
"buffer": "^6.0.3",
"eslint": "^9.9.0",
"eslint-plugin-react-hooks": "^5.1.0-rc.0",
"eslint-plugin-react-refresh": "^0.4.9",
"globals": "^15.9.0",
"happy-dom": "^20.0.11",
"reflect-metadata": "^0.2.2",
"tsdown": "^0.20.1",
"typescript": "^5.5.3",
"typescript-eslint": "^8.0.1",
"vitest": "^3.2.4"
}
}