-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.56 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.56 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "create-ely",
"version": "0.1.5",
"description": "Scaffold production-ready ElysiaJS projects with ease using Bun - choose between backend-only or full-stack monorepo templates",
"type": "module",
"author": {
"name": "truehazker",
"url": "https://github.com/truehazker"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/truehazker/create-ely.git"
},
"homepage": "https://github.com/truehazker/create-ely#readme",
"bugs": {
"url": "https://github.com/truehazker/create-ely/issues"
},
"keywords": [
"elysiajs",
"elysia",
"bun",
"template",
"scaffold",
"cli",
"create",
"generator",
"boilerplate",
"starter",
"monorepo",
"fullstack",
"backend",
"drizzle",
"postgresql",
"react",
"tanstack-router"
],
"bin": {
"create-ely": "./src/index.ts"
},
"files": [
"src",
"templates.zip",
"scripts/postinstall.ts",
"assets",
"README.md",
"LICENSE"
],
"scripts": {
"dev": "bun run src/index.ts",
"build": "bun build src/index.ts --compile --outfile dist/create-ely",
"prepare": "bun run scripts/prepare.ts",
"postinstall": "bun run scripts/postinstall.ts"
},
"engines": {
"bun": ">=1.0.0"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"dependencies": {
"@clack/prompts": "^0.11.0",
"adm-zip": "^0.5.16"
},
"devDependencies": {
"@biomejs/biome": "2.3.10",
"@types/adm-zip": "^0.5.7",
"@types/bun": "^1.3.5"
}
}