-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.03 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
{
"name": "bunsoir",
"version": "0.1.1",
"description": "Setup Bun app with zero build configuration",
"author": {
"name": "ize-302",
"url": "https://github.com/ize-302",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/ize-302/bunsoir"
},
"bin": {
"bunsoir": "./index.js"
},
"files": [
"index.js",
"bunsoir.js"
],
"devDependencies": {
"@types/node": "^18.16.0",
"bun-types": "latest",
"drizzle-kit": "^0.19.13"
},
"homepage": "https://github.com/ize-302/bunsoir",
"bugs": "https://github.com/ize-302/bunsoir/issues",
"license": "MIT",
"keywords": [
"elysia",
"bun",
"boilerplate",
"bunsoir"
],
"dependencies": {
"chalk": "^4.1.2",
"cli-progress": "^3.12.0",
"commander": "^11.0.0",
"drizzle-orm": "^0.28.6",
"mysql2": "^3.6.1",
"pg": "^8.11.3",
"prompts": "^2.4.2",
"shelljs": "^0.8.5"
},
"module": "index.js",
"peerDependencies": {
"typescript": "^5.0.0"
}
}