-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.09 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
{
"name": "@nuogz/desire",
"version": "6.5.1",
"description": "Server library based on Koa",
"author": "DanoR",
"license": "LGPL-3.0-or-later",
"repository": {
"type": "git",
"url": "git+https://github.com/nuogz/desire.git"
},
"private": false,
"type": "module",
"typesSource": [
"node"
],
"sideEffects": false,
"engines": {
"node": ">=20"
},
"main": "./index.js",
"files": [
"index.js",
"locale/**",
"types/**"
],
"typings": "./types/index.d.ts",
"scripts": {
"declare": "tsc",
"postdeclare": "copy /Y bases.d.ts types"
},
"dependencies": {
"@koa/cors": "^5.0.0",
"@nuogz/i18n": "^3.7.4",
"@nuogz/utility": "^1.8.2",
"koa": "^2.15.3",
"koa-bodyparser": "^4.4.1",
"koa-compress": "^5.1.1",
"koa-favicon": "^2.1.0",
"koa-helmet": "^7.0.2"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"@stylistic/eslint-plugin-js": "^2.6.4",
"@types/koa": "^2.15.0",
"@types/koa-compress": "^4.0.6",
"@types/koa-favicon": "^2.1.3",
"@types/koa__cors": "^5.0.0",
"@types/node": "^20.16.1",
"eslint": "^9.9.1",
"globals": "^15.9.0",
"typescript": "^5.5.4"
}
}