-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 2.02 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 2.02 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
{
"name": "agent-auth-proxy",
"version": "1.0.0",
"private": true,
"description": "Identity-aware proxy for agent-to-service communication",
"type": "module",
"scripts": {
"build": "turbo run build",
"dev": "turbo run dev",
"start": "turbo run start",
"clean": "turbo run clean && rm -rf node_modules",
"test": "turbo run test",
"test:coverage": "turbo run test:coverage",
"test:security": "turbo run test:security",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"format:check": "biome format .",
"typecheck": "turbo run typecheck",
"db:generate": "turbo run db:generate",
"db:migrate": "turbo run db:migrate",
"db:seed": "turbo run db:seed",
"db:studio": "turbo run db:studio",
"docker:build": "docker build -t agent-auth-proxy .",
"docker:up": "docker compose up -d",
"docker:down": "docker compose down",
"audit": "pnpm audit --audit-level moderate",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "turbo run build && changeset publish"
},
"devDependencies": {
"@biomejs/biome": "^2.4.14",
"@changesets/changelog-github": "^0.6.0",
"@changesets/cli": "^2.28.1",
"turbo": "^2.9.14",
"typescript": "^6.0.3"
},
"packageManager": "pnpm@10.22.0",
"engines": {
"node": ">=22.0.0",
"pnpm": ">=10.0.0"
},
"keywords": [
"proxy",
"auth",
"oauth2",
"api",
"agent",
"identity",
"security"
],
"author": "Rick Somers <rick@reaatech.com> (https://reaatech.com)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/reaatech/agent-auth-proxy.git"
},
"bugs": {
"url": "https://github.com/reaatech/agent-auth-proxy/issues"
},
"homepage": "https://github.com/reaatech/agent-auth-proxy#readme",
"pnpm": {
"overrides": {
"vite": ">=6.4.2",
"@esbuild-kit/core-utils>esbuild": ">=0.25.0",
"fast-uri": ">=3.1.2",
"fast-jwt": ">=6.2.4"
}
}
}