mirror of
https://github.com/logto-io/logto.git
synced 2024-12-16 20:26:19 -05:00
33 lines
743 B
JSON
33 lines
743 B
JSON
{
|
|
"name": "logto",
|
|
"version": "1.0.0",
|
|
"description": "The open source identity solution.",
|
|
"main": "build/index.js",
|
|
"author": "Logto",
|
|
"license": "UNLICENSED",
|
|
"private": true,
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"lint": "xo src/",
|
|
"dev": "tsc-watch --onSuccess \"node ./build/index.js\""
|
|
},
|
|
"dependencies": {
|
|
"koa": "^2.13.1",
|
|
"koa-mount": "^4.0.0",
|
|
"koa-router": "^10.0.0",
|
|
"oidc-provider": "^7.4.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/koa": "^2.13.3",
|
|
"@types/koa-mount": "^4.0.0",
|
|
"@types/koa-router": "^7.4.2",
|
|
"@types/oidc-provider": "^7.4.0",
|
|
"tsc-watch": "^4.4.0",
|
|
"typescript": "^4.3.2",
|
|
"xo": "0.39.1"
|
|
},
|
|
"engines": {
|
|
"node": "14",
|
|
"yarn": "1"
|
|
}
|
|
}
|