This repository has been archived by the owner on Nov 15, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
56 lines (56 loc) · 1.49 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
{
"name": "@elysiajs/node",
"version": "0.0.0-alpha.0",
"author": {
"name": "saltyAom",
"url": "https://github.com/SaltyAom",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/elysiajs/node-adapter"
},
"main": "./dist/index.js",
"devDependencies": {
"@types/node": "^20.4.1",
"bun-types": "^0.6.13",
"elysia": "^0.6.0-alpha.1",
"eslint": "^8.44.0",
"rimraf": "4.4.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"peerDependencies": {
"elysia": ">= 0.6.0-alpha.1"
},
"exports": {
"require": "./dist/cjs/index.js",
"import": "./dist/index.js",
"node": "./dist/index.js",
"default": "./dist/index.js"
},
"bugs": "https://github.com/elysiajs/node-adapter/issues",
"description": "Node adapter plugin for Elysia",
"homepage": "https://github.com/elysiajs/node-adapter",
"keywords": [
"elysia",
"plugin",
"node",
"adapter"
],
"license": "MIT",
"scripts": {
"dev": "ts-node example/index.ts",
"test": "bun wiptest",
"build": "rimraf dist && npm run build:cjs && npm run build:esm",
"build:cjs": "tsc --project tsconfig.cjs.json",
"build:esm": "tsc --project tsconfig.esm.json",
"release": "npm run build && npm run test && npm publish --access public"
},
"types": "./src/index.ts",
"dependencies": {
"@sinclair/typebox": "^0.29.4",
"fast-querystring": "^1.1.2",
"uWebSockets.js": "uNetworking/uWebSockets.js#v20.30.0"
}
}