-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
154 lines (154 loc) · 4.9 KB
/
Copy pathpackage.json
File metadata and controls
154 lines (154 loc) · 4.9 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
{
"dependencies": {
"@base-ui/react": "^1.4.1",
"@fontsource-variable/geist": "^5.2.9",
"@fontsource-variable/geist-mono": "^5.2.8",
"@octokit/auth-app": "^8.2.0",
"@octokit/rest": "^22.0.1",
"@octokit/webhooks": "^14.2.0",
"@openrouter/sdk": "^0.12.35",
"@paralleldrive/cuid2": "^3.3.0",
"@t3-oss/env-core": "^0.13.11",
"@tailwindcss/vite": "^4.1.18",
"@tanstack/react-devtools": "latest",
"@tanstack/react-pacer": "^0.22.1",
"@tanstack/react-query": "^5.100.10",
"@tanstack/react-query-devtools": "^5.100.10",
"@tanstack/react-router": "latest",
"@tanstack/react-router-devtools": "latest",
"@tanstack/react-router-ssr-query": "latest",
"@tanstack/react-start": "latest",
"@tanstack/router-plugin": "^1.132.0",
"better-auth": "^1.6.11",
"better-auth-cloudflare": "^0.3.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"drizzle-orm": "1.0.0-beta.24",
"jose": "^6.2.3",
"lucide-react": "^0.545.0",
"next-themes": "^0.4.6",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"recharts": "^3.8.1",
"sonner": "^2.0.7",
"tailwind-merge": "^3.6.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.4.15",
"@cloudflare/workers-types": "^4.20260511.1",
"@tailwindcss/typography": "^0.5.16",
"@tanstack/devtools-vite": "latest",
"@testing-library/dom": "^10.4.1",
"@testing-library/react": "^16.3.0",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@vitejs/plugin-react": "^6.0.1",
"commitizen": "^4.3.1",
"cz-git": "^1.13.1",
"dotenv": "^17.4.2",
"drizzle-kit": "1.0.0-beta.24",
"eslint-plugin-react-hooks": "^7.1.1",
"eslint-plugin-react-you-might-not-need-an-effect": "^0.10.1",
"husky": "^9.1.7",
"jsdom": "^28.1.0",
"knip": "^6.13.1",
"lint-staged": "^17.0.4",
"nitro": "3.0.260429-beta",
"react-doctor": "^0.1.6",
"react-scan": "^0.5.6",
"shadcn": "^4.7.0",
"tsx": "^4.21.0",
"typescript": "^6.0.2",
"ultracite": "7.7.0",
"vite": "^8.0.0",
"vitest": "^4.1.5",
"wrangler": "^4.90.1"
},
"name": "oss-protector",
"version": "0.1.0",
"description": "Shared abuse intelligence for suspicious GitHub pull request activity. One GitHub App, one public directory, one scoring engine.",
"license": "MIT",
"homepage": "https://github.com/lord007tn/oss-protector#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/lord007tn/oss-protector.git"
},
"bugs": {
"url": "https://github.com/lord007tn/oss-protector/issues"
},
"keywords": [
"github-app",
"oss",
"open-source",
"abuse",
"moderation",
"pull-requests",
"bounty-farming",
"cloudflare-workers",
"tanstack-start"
],
"packageManager": "pnpm@10.30.3",
"scripts": {
"build:prepare": "tsx ./scripts/prepare-github-stars.ts",
"dev": "vite dev --port 3000",
"build": "vite build",
"prebuild:prod": "tsx ./scripts/prepare-github-stars.ts",
"build:prod": "vite build",
"preview": "vite preview",
"deploy": "pnpm run build:prod && wrangler deploy",
"cf:build": "pnpm run db:migrate && pnpm run build:prod",
"cf-typegen": "wrangler types",
"test": "vitest run --config vitest.config.ts",
"typecheck": "tsc --noEmit",
"db:generate": "drizzle-kit generate",
"db:migrate:local": "tsx ./scripts/db/migrate-local.ts",
"db:migrate": "drizzle-kit migrate",
"db:push": "drizzle-kit push",
"db:baseline": "tsx ./scripts/db/baseline.ts",
"db:baseline:remote": "tsx ./scripts/db/baseline.ts --remote --yes",
"db:reset": "tsx ./scripts/db/reset.ts",
"db:reset:remote": "tsx ./scripts/db/reset.ts --remote --yes",
"db:clean": "tsx ./scripts/db/clean.ts",
"db:clean:remote": "tsx ./scripts/db/clean.ts --remote --yes",
"db:seed": "tsx ./src/db/seed.ts --local",
"db:seed:demo": "tsx ./src/db/seed-maintainer-demo.ts --local",
"db:seed:remote": "tsx ./src/db/seed.ts --remote",
"format": "ultracite fix",
"lint": "ultracite check",
"check": "ultracite check",
"fix": "ultracite fix",
"knip": "knip",
"doctor": "react-doctor --offline --full --fail-on error .",
"scan": "react-scan http://localhost:3000",
"verify": "pnpm run check && pnpm run typecheck && pnpm test && pnpm run knip && pnpm run doctor",
"toolchain": "pnpm run verify && pnpm build",
"prepare": "husky"
},
"type": "module",
"private": true,
"config": {
"commitizen": {
"path": "node_modules/cz-git"
}
},
"pnpm": {
"onlyBuiltDependencies": [
"@openrouter/sdk",
"esbuild",
"lightningcss",
"msw",
"sharp",
"workerd"
]
},
"lint-staged": {
"*.{js,jsx,ts,tsx,json,jsonc,css,scss,md,mdx}": [
"pnpm dlx ultracite fix"
]
}
}