-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 953 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 953 Bytes
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
{
"name": "@byteholic/nelysia",
"version": "0.1.0",
"description": "Native Elysia modular framework",
"author": "byteholic",
"license": "MIT",
"keywords": ["elysia", "bun", "decorator", "di", "plugin", "typescript", "websocket", "framework"],
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"files": ["dist", "README.md", "LICENSE"],
"scripts": {
"build": "bun run build.ts",
"dev": "bun run --watch demo/main.ts",
"start": "bun run demo/main.ts",
"prepublishOnly": "bun run build"
},
"peerDependencies": {
"elysia": ">=1.0.0"
},
"devDependencies": {
"bun-types": "latest",
"elysia": "latest",
"@elysiajs/swagger": "latest"
},
"dependencies": {
"reflect-metadata": "^0.2.2"
}
}