-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
90 lines (90 loc) · 3.17 KB
/
Copy pathpackage.json
File metadata and controls
90 lines (90 loc) · 3.17 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
{
"name": "rolepatch",
"version": "0.1.0",
"private": true,
"homepage": "https://rolepatch.com",
"packageManager": "pnpm@10.33.2",
"scripts": {
"dev": "next dev",
"build": "next build --webpack",
"cf:build": "next build --webpack && node scripts/verify-deploy-routes.mjs && node scripts/run-inline-critical-css.mjs && opennextjs-cloudflare build --skipNextBuild && opennextjs-cloudflare populateCache local && pnpm --filter ./landing-astro build && node scripts/run-overlay-astro-landing.mjs",
"deploy": "pnpm cf:build && wrangler deploy --tag \"$(git rev-parse HEAD)\"",
"start": "next start",
"lint": "biome check .",
"typecheck": "tsc --noEmit",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"test:e2e": "playwright test",
"release:verify": "node scripts/release-verify.mjs",
"smoke:prod": "node scripts/production-smoke.mjs",
"smoke:local": "ROLEPATCH_SMOKE_BASE_URL=http://localhost:3000 node scripts/production-smoke.mjs",
"verify:deploy-routes": "node scripts/verify-deploy-routes.mjs",
"prepare": "husky",
"format": "biome format --write .",
"format:check": "biome format .",
"check": "biome check .",
"apply-agent": "node scripts/apply-agent-cli.mjs",
"apply-agent:mcp": "node scripts/apply-agent-mcp.mjs",
"docs:check": "node scripts/check-docs.mjs",
"docs:build": "blume build",
"docs:dev": "blume dev",
"knip": "knip --no-exit-code --reporter symbols",
"knip:strict": "knip --reporter symbols"
},
"dependencies": {
"@ai-sdk/openai-compatible": "^2.0.41",
"@cloudflare/puppeteer": "^1.1.0",
"@codemirror/lang-markdown": "^6.5.1",
"@codemirror/state": "^6.7.1",
"@codemirror/theme-one-dark": "^6.1.3",
"@codemirror/view": "^6.43.6",
"@mozilla/readability": "^0.6.0",
"@saas-maker/feedback": "0.2.1",
"@sparticuz/chromium": "^147.0.2",
"ai": "^6.0.97",
"better-auth": "^1.6.25",
"codemirror": "^6.0.2",
"dodopayments": "^2.43.0",
"linkedom": "^0.18.13",
"lucide-react": "^1.27.0",
"mammoth": "^1.12.0",
"marked": "^18.0.7",
"next": "16.2.12",
"pdf-parse": "^2.4.5",
"posthog-js": "^1.407.3",
"puppeteer-core": "^24.42.0",
"react": "19.2.8",
"react-diff-viewer-continued": "^4.4.0",
"react-dom": "19.2.8",
"react-markdown": "^10.1.0",
"standardwebhooks": "^1.0.0",
"uuid": "^13.0.0",
"web-vitals": "^4.2.4",
"zod": "^4.4.3"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@opennextjs/cloudflare": "^1.20.2",
"@playwright/test": "^1.62.0",
"@tailwindcss/postcss": "^4.3.3",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@testing-library/user-event": "^14.6.1",
"@types/node": "^20",
"@types/react": "^19.2.17",
"@types/react-dom": "^19",
"@vitejs/plugin-react": "^6.0.4",
"@vitest/coverage-v8": "^4.1.10",
"babel-plugin-react-compiler": "1.0.0",
"beasties": "^0.3.5",
"blume": "1.2.0",
"husky": "^9.1.7",
"jsdom": "^29.1.1",
"knip": "^6.29.0",
"tailwindcss": "^4.3.3",
"typescript": "^5",
"vitest": "^4.1.10",
"wrangler": "^4.114.0"
}
}