-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 983 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 983 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": "fcy",
"version": "2.1.13",
"description": "A fast webserver using golang and fiber",
"type": "module",
"scripts": {
"build": "tsup",
"dev": "node dist/index.js",
"format": "prettier --write .",
"prepublishOnly": "pnpm build"
},
"files": [
"./dist/"
],
"bin": {
"fcy": "./dist/index.js"
},
"keywords": [
"server",
"serve",
"static",
"assets",
"websocket",
"ws",
"fast",
"fiber",
"go",
"golang"
],
"author": "LoryPelli",
"license": "MIT",
"engines": {
"node": ">=14.13.1"
},
"devDependencies": {
"@types/node": "^22.13.10",
"husky": "^9.1.7",
"prettier": "^3.5.3",
"prettier-plugin-organize-imports": "^4.1.0",
"tsup": "^8.4.0"
},
"dependencies": {
"chalk": "^5.4.1",
"node-fetch-native": "^1.6.6"
}
}