-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
123 lines (123 loc) · 2.73 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
{
"name": "@modscleo4/midori",
"version": "0.6.1",
"description": "Midori is a Node.js web API framework with minimal dependencies and based on PSR ideas.",
"type": "module",
"keywords": [
"node",
"api",
"framework"
],
"author": {
"name": "Dhiego Cassiano Fogaça Barbosa",
"email": "[email protected]"
},
"license": "Apache-2.0",
"scripts": {
"clean": "tsc -b --clean",
"format": "biome format --write ./src",
"lint": "biome lint ./src",
"lint:fix": "biome lint --write ./src",
"build": "tsc && npm run postbuild",
"postbuild": "node bin/postbuild.js",
"prepare": "npm run build",
"test": "tsc -p tsconfig.test.json && node test/main.spec.js"
},
"files": [
"bin/",
"dist/",
"package.json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/modscleo4/midori.git"
},
"exports": {
"./app": {
"import": {
"types": "./dist/app/index.d.ts",
"default": "./dist/app/index.js"
}
},
"./auth": {
"import": {
"types": "./dist/auth/index.d.ts",
"default": "./dist/auth/index.js"
}
},
"./errors": {
"import": {
"types": "./dist/errors/index.d.ts",
"default": "./dist/errors/index.js"
}
},
"./hash": {
"import": {
"types": "./dist/hash/index.d.ts",
"default": "./dist/hash/index.js"
}
},
"./http": {
"import": {
"types": "./dist/http/index.d.ts",
"default": "./dist/http/index.js"
}
},
"./jwt": {
"import": {
"types": "./dist/jwt/index.d.ts",
"default": "./dist/jwt/index.js"
}
},
"./log": {
"import": {
"types": "./dist/log/index.d.ts",
"default": "./dist/log/index.js"
}
},
"./middlewares": {
"import": {
"types": "./dist/middlewares/index.d.ts",
"default": "./dist/middlewares/index.js"
}
},
"./providers": {
"import": {
"types": "./dist/providers/index.d.ts",
"default": "./dist/providers/index.js"
}
},
"./router": {
"import": {
"types": "./dist/router/index.d.ts",
"default": "./dist/router/index.js"
}
},
"./scheduler": {
"import": {
"types": "./dist/scheduler/index.d.ts",
"default": "./dist/scheduler/index.js"
}
},
"./util/*": "./dist/util/*"
},
"typesVersions": {
"*": {
"*": [
"dist/*"
]
}
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/mime-types": "^2.1.4",
"@types/node": "^22.9.0",
"typescript": "^5.6.3"
},
"dependencies": {
"mime-types": "^2.1.35"
},
"engines": {
"node": ">=16"
}
}