-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 1.78 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
75
{
"name": "uwebsockets-use",
"version": "1.0.0",
"description": "The UWebSocketsJs Utils for every projects",
"author": "Harry Tran <[email protected]>",
"license": "MIT",
"repository": "https://github.com/techmely/uwebsocket-use",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"publishConfig": {
"access": "public",
"directory": "dist",
"tag": "latest"
},
"files": ["dist"],
"sideEffects": false,
"scripts": {
"build": "tsup",
"test.unit": "vitest run",
"clean": "rimraf dist",
"lint": "bunx @biomejs/biome check . --apply",
"lint.perf": "oxlint",
"upgrade.deps": "bunx npm-check-updates -u",
"type-check": "tsc --noEmit"
},
"dependencies": {
"@techmely/http": "1.1.1",
"@techmely/utils": "2.1.18"
},
"peerDependencies": {
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.43.0"
},
"devDependencies": {
"@biomejs/biome": "1.6.4",
"@techmely/types": "1.6.5",
"@types/node": "20.12.7",
"@types/supertest": "6.0.2",
"husky": "9.0.11",
"oxlint": "0.2.17",
"supertest": "6.3.4",
"tslib": "2.6.2",
"tsup": "8.0.2",
"typescript": "5.4.5",
"valibot": "0.30.0",
"vitest": "1.5.0",
"zod": "3.22.4"
},
"funding": [
{
"type": "ko-fi",
"url": "https://ko-fi.com/harrytran998"
},
{
"type": "patreon",
"url": "https://www.patreon.com/harrytran998"
}
],
"bugs": {
"url": "https://github.com/techmely/techmely/issues"
},
"keywords": ["techmely", "uwebsockets"]
}