-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 953 Bytes
/
Copy pathpackage.json
File metadata and controls
46 lines (46 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
38
39
40
41
42
43
44
45
46
{
"name": "elysia-cli",
"version": "0.0.11",
"description": "",
"author": {
"name": "Mohamed Abdelrahman",
"url": "https://github.com/mo7amed4a"
},
"type": "module",
"bin": {
"elysia-cli": "./dist/index.js"
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.js",
"license": "MIT",
"keywords": [
"controller",
"service",
"model",
"bun",
"typescript",
"elysiajs"
],
"repository": {
"type": "git",
"url": "https://github.com/mo7amed4a/elysia-cli"
},
"scripts": {
"build": "bun build --minify-whitespace --minify-syntax --target node --outfile ./dist/index.js cli/index.ts",
"dev": "bun cli/index.ts",
"start": "node dist/index.js"
},
"dependencies": {
"commander": "^14.0.2",
"elysia": "^1.4.15",
"inquirer": "^12.11.0"
},
"devDependencies": {
"bun-types": "latest"
},
"files": [
"dist",
"README.md"
]
}