-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.16 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.16 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
{
"name": "@elysiajs/elf",
"description": "Convenient way to scaffold Elysia project",
"version": "0.0.0-exp-20230721.1301",
"author": {
"name": "saltyAom",
"url": "https://github.com/SaltyAom",
"email": "saltyaom@gmail.com"
},
"main": "./bin/elf.js",
"bin": {
"elf": "./bin/elf.js"
},
"scripts": {
"build": "swc ./src -d bin --copy-files",
"release": "npm run build && npm publish --access public"
},
"dependencies": {
"@inquirer/select": "^1.2.1",
"chalk": "4.1.2",
"inquirer": "8.2.5",
"minimist": "^1.2.8",
"prettier": "^2.8.8",
"tasuku": "^2.0.1",
"zx-cjs": "^7.0.7-0"
},
"devDependencies": {
"@swc/cli": "^0.1.62",
"@swc/core": "^1.3.66",
"@types/inquirer": "^9.0.3",
"@types/minimist": "^1.2.2",
"@types/prettier": "^2.7.3",
"bun-types": "^0.6.9",
"rimraf": "4.4.1",
"typescript": "^5.1.3"
},
"repository": {
"type": "git",
"url": "https://github.com/elysiajs/elf"
},
"bugs": "https://github.com/elysiajs/elf/issues",
"homepage": "https://github.com/elysiajs/elf",
"keywords": [
"bun",
"http",
"web",
"server"
],
"license": "MIT"
}