-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 814 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 814 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
{
"name": "create-api-generator",
"version": "0.0.1",
"description": "CLI tool to generate API boilerplate with configurable runtime, server and ORM options",
"module": "index.ts",
"type": "module",
"private": false,
"bin": {
"create-api-generator": "./bin/cli.js"
},
"files": ["bin", "dist", "src", "templates"],
"scripts": {
"build": "bun build ./index.ts --outdir ./dist --target node --format esm && cp -r elysia_template ./dist && cp -r src/template_files ./dist",
"prepublishOnly": "bun run build"
},
"keywords": ["api", "generator", "cli", "elysia", "kysely", "bun"],
"devDependencies": {
"@types/bun": "latest",
"@types/pg": "^8.11.11",
"@types/prompts": "^2.4.9"
},
"peerDependencies": {
"typescript": "^5"
},
"dependencies": {
"pg": "^8.14.1",
"prompts": "^2.4.2"
}
}