forked from marco10024/fastify-socket.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.26 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
{
"name": "fastify-socket.io",
"version": "5.1.0",
"private": false,
"main": "dist/index.js",
"scripts": {
"build": "tsc --noEmit && tsup-node",
"format": "rome format --write .",
"lint": "rome check .",
"preinstall": "npx only-allow pnpm",
"prepare": "husky install",
"prepublish": "pnpm build",
"release": "pnpm build && changeset publish",
"test": "tsx --test ./test/*.ts",
"test:watch": "tsx --watch --test ./test/*.ts",
"test:coverage": "c8 --all --src src --reporter lcov --reporter text tsx --test ./test/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ducktors/fastify-socket.io.git"
},
"dependencies": {
"fastify-plugin": "^4.5.1",
"tslib": "^2.6.1"
},
"devDependencies": {
"@changesets/changelog-github": "^0.4.8",
"@changesets/cli": "^2.26.2",
"@ducktors/tsconfig": "^0.1.1",
"@types/node": "^16.18.39",
"c8": "^8.0.1",
"fastify": "^4.21.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"rome": "11.0.0",
"socket.io": "^4.7.4",
"socket.io-client": "^4.7.4",
"tsup": "^6.7.0",
"tsx": "^4.13.0",
"typescript": "^4.9.5"
},
"files": [
"dist"
],
"peerDependencies": {
"fastify": "4.x.x",
"socket.io": ">=4"
}
}