-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.19 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.19 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "koapache",
"version": "3.0.0",
"description": "A Web server which is easy to use in Command-line or as a forked Child process based on Koa",
"keywords": ["Web", "server", "command-line", "worker", "koa", "apache"],
"author": "shiy2008@gmail.com",
"license": "LGPL-3.0",
"homepage": "https://tech-query.me/KoApache/",
"repository": {
"type": "git",
"url": "git+https://github.com/TechQuery/KoApache.git"
},
"bugs": {
"url": "https://github.com/TechQuery/KoApache/issues"
},
"main": "dist/WebServer.js",
"module": "source/WebServer.ts",
"types": "dist/WebServer.d.ts",
"bin": {
"web-server": "dist/index.js"
},
"engines": {
"node": ">=20"
},
"lint-staged": {
"*.{md,json,yml,ts,tsx}": "biome check --write"
},
"jest": {
"preset": "ts-jest"
},
"scripts": {
"prepare": "husky",
"lint": "lint-staged",
"pack": "rm -rf dist/ && tsc",
"test": "npm run pack && jest --forceExit",
"docs": "rm -rf docs/ && typedoc source/WebServer.ts",
"build": "npm run lint && npm test && npm run docs",
"prepublishOnly": "npm run build",
"start": "npm run docs && node dist/ docs/ -o"
},
"dependencies": {
"@koa/cors": "^5.0.0",
"@tech_query/node-toolkit": "^2.0.0-beta.0",
"commander-jsx": "^0.7.1",
"form-data": "^4.0.4",
"internal-ip": "^6.2.0",
"koa": "^3.1.1",
"koa-body": "^7.0.0",
"koa-logger": "^4.0.0",
"koa-static": "^5.0.0",
"open": "^8.4.2"
},
"devDependencies": {
"@biomejs/biome": "2.3.2",
"@types/jest": "^29.5.14",
"@types/koa": "^3.0.1",
"@types/koa-logger": "^3.1.5",
"@types/koa-static": "^4.0.4",
"@types/koa__cors": "^5.0.1",
"@types/node": "^22.18.13",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^16.2.6",
"ts-jest": "^29.4.5",
"typedoc": "^0.28.14",
"typescript": "~5.9.3"
},
"koapache": {
"proxy": {
"^/github/(.+)": "https://api.github.com/$1"
}
}
}