-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
82 lines (82 loc) · 1.99 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
{
"name": "@winwin/koa-authentication",
"version": "0.2.3",
"packageManager": "[email protected]",
"description": "",
"keywords": [],
"homepage": "https://github.com/YuJianghao/koa-authentication#readme",
"bugs": {
"url": "https://github.com/YuJianghao/koa-authentication/issues"
},
"license": "MIT",
"author": "winwin2011 <[email protected]>",
"repository": {
"type": "git",
"url": "git+https://github.com/YuJianghao/koa-authentication.git"
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.cjs",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"typesVersions": {
"*": {
"*": [
"./dist/*",
"./dist/index.d.ts"
]
}
},
"files": [
"dist"
],
"sideEffects": false,
"scripts": {
"build": "rimraf dist && unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && pnpm publish",
"start": "esno src/index.ts",
"test": "vitest",
"typecheck": "tsc --noEmit"
},
"peerDependencies": {
"@koa/router": "^10.1.1",
"koa": "^2.13.4"
},
"dependencies": {
"@koa/router": "^10.1.1",
"http-errors": "^2.0.0",
"jsonwebtoken": "^8.5.1",
"koa": "^2.13.4"
},
"devDependencies": {
"@antfu/eslint-config": "^0.20.0",
"@antfu/ni": "^0.14.0",
"@babel/types": "^7.17.0",
"@types/http-errors": "^1.8.2",
"@types/jsonwebtoken": "^8.5.8",
"@types/koa": "^2.13.4",
"@types/koa-bodyparser": "^4.3.7",
"@types/koa__router": "^8.0.11",
"@types/node": "^17.0.23",
"@types/supertest": "^2.0.12",
"bumpp": "^7.1.1",
"eslint": "^8.12.0",
"esno": "^0.14.1",
"koa-bodyparser": "^4.3.0",
"pnpm": "^6.32.4",
"rimraf": "^3.0.2",
"supertest": "^6.2.2",
"typescript": "^4.6.3",
"unbuild": "^0.7.2",
"vite": "^2.9.1",
"vitest": "^0.9.0"
}
}