-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
{
"name": "koa-pilot",
"version": "0.7.2",
"description": "Just another Koa router",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"scripts": {
"build": "tsc -d && rollup -c"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jiangfengming/koa-pilot.git"
},
"keywords": [
"koa",
"router"
],
"author": "Jiang Fengming",
"license": "MIT",
"bugs": {
"url": "https://github.com/jiangfengming/koa-pilot/issues"
},
"homepage": "https://github.com/jiangfengming/koa-pilot#readme",
"devDependencies": {
"@rollup/plugin-typescript": "^8.5.0",
"@types/koa": "^2.13.5",
"@typescript-eslint/eslint-plugin": "^5.38.1",
"@typescript-eslint/parser": "^5.38.1",
"eslint": "^8.24.0",
"eslint-config-unambiguous": "^0.7.1",
"koa": "^2.13.4",
"rollup": "^2.79.1",
"typescript": "^4.8.4"
},
"dependencies": {
"cast-string": "^0.6.3",
"url-router": "^13.0.0"
}
}