-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.1 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.1 KB
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
{
"name": "@edge-auth/edgeauth",
"version": "0.1.1",
"description": "Open-source authentication service built on Cloudflare's edge infrastructure - simple, serverless, and globally distributed",
"private": true,
"type": "module",
"scripts": {
"dev": "node scripts/dev.js",
"dev:setup": "node scripts/setup-local.js",
"dev:frontend": "node scripts/dev.js --frontend",
"dev:backend": "node scripts/dev.js --backend",
"build": "turbo build",
"test": "turbo test",
"test:e2e": "turbo test",
"test:dev": "turbo test:dev",
"test:ci": "turbo test:ci",
"lint": "turbo lint",
"format": "prettier --write .",
"format:check": "prettier --check .",
"clean": "turbo clean && rm -rf node_modules",
"typecheck": "turbo typecheck",
"setup:local": "node scripts/setup-local.js"
},
"keywords": [
"authentication",
"edge-computing",
"cloudflare-workers",
"jwt",
"serverless",
"auth",
"typescript",
"monorepo",
"deepractice"
],
"author": "Deepractice",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "https://github.com/Deepractice/EdgeAuth"
},
"engines": {
"node": ">=20.0.0",
"pnpm": ">=8.0.0"
},
"packageManager": "pnpm@10.15.1",
"devDependencies": {
"@cloudflare/workers-types": "^4.20251011.0",
"@commitlint/cli": "^20.1.0",
"@commitlint/config-conventional": "^20.0.0",
"@deepracticex/config-preset": "^0.1.0",
"@deepracticex/vitest-cucumber": "^1.3.0",
"@eslint/js": "^9.37.0",
"@types/node": "^22.10.6",
"@typescript-eslint/eslint-plugin": "^8.46.0",
"@typescript-eslint/parser": "^8.46.0",
"@vitest/ui": "^3.2.4",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"execa": "^9.6.0",
"lefthook": "^1.13.6",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"turbo": "^2.5.8",
"typescript": "^5.9.3",
"vitest": "^3.2.4",
"wrangler": "^4.42.2"
},
"dependencies": {
"@deepracticex/error-handling": "^0.2.0",
"@deepracticex/logger": "^1.0.0",
"hono": "^4.9.11"
}
}