-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 873 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 873 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
{
"name": "@backlib/koa",
"type": "module",
"version": "0.6.1-WIP",
"description": "Minimalist KOA utilities for backend web services",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"engines": {
"node": ">=16.10"
},
"repository": {
"type": "git",
"url": "https://github.com/britesnow/node-backlib-koa.git"
},
"scripts": {
"prepare": "node_modules/.bin/rimraf ./dist && ./node_modules/.bin/tsc"
},
"author": "jeremy.chone@gmail.com",
"license": "MIT",
"dependencies": {
"@koa/router": "^15.2.0",
"@types/koa": "^3.0.1",
"@types/koa__router": "^12.0.5",
"koa": "^3.1.1",
"koa-compose": "^4.1.0"
},
"peerDependencies": {
"backlib": "^0.6.0"
},
"devDependencies": {
"backlib": "^0.6.0",
"rimraf": "^6.1.2",
"typescript": "^5.9.3"
},
"files": [
"src/",
"dist/"
]
}