This repository was archived by the owner on Jun 7, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 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
47
48
49
50
{
"name": "@elysiajs/websocket",
"version": "0.2.8",
"description": "Plugin for Elysia that add support for websocket",
"author": {
"name": "saltyAom",
"url": "https://github.com/SaltyAom",
"email": "saltyaom@gmail.com"
},
"main": "./dist/index.js",
"exports": {
"require": "./dist/index.js",
"import": "./dist/index.js",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"types": "./src/index.ts",
"keywords": [
"elysia",
"websocket"
],
"homepage": "https://github.com/elysiajs/elysia-websocket",
"repository": {
"type": "git",
"url": "https://github.com/elysiajs/elysia-websocket"
},
"bugs": "https://github.com/elysiajs/elysia-websocket/issues",
"license": "MIT",
"scripts": {
"dev": "bun run --hot example/index.ts",
"test": "bun wiptest",
"build": "rimraf dist && tsc --project tsconfig.esm.json",
"release": "npm run build && npm run test && npm publish --access public"
},
"peerDependencies": {
"elysia": ">= 0.2.2"
},
"devDependencies": {
"@sinclair/typebox": "0.25.21",
"@types/node": "^18.11.7",
"bun-types": "^0.5.0",
"elysia": "^0.2.2",
"eslint": "^8.26.0",
"typescript": "^4.9.3"
},
"dependencies": {
"nanoid": "^4.0.0",
"raikiri": "^0.0.0-beta.3"
}
}