-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 837 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 837 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
{
"name": "authmaster",
"version": "0.1.0",
"private": true,
"description": "Open-source OAuth2.0/OIDC authentication server for Cloudflare",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "turbo run dev",
"build": "turbo run build",
"test": "turbo run test",
"lint": "turbo run lint",
"deploy": "turbo run deploy",
"db:migrate": "cd packages/worker-api && wrangler d1 migrations apply authmaster-db"
},
"devDependencies": {
"turbo": "^1.11.0",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/PythonSmall-Q/AuthMaster.git"
},
"keywords": [
"oauth2",
"oidc",
"authentication",
"authorization",
"cloudflare",
"workers"
],
"author": "",
"license": "MIT"
}