-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
94 lines (94 loc) · 2.24 KB
/
package.json
File metadata and controls
94 lines (94 loc) · 2.24 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
{
"name": "@atriumn/cryyer",
"version": "0.7.0",
"description": "Automated product update emails with per-product voice powered by LLM drafts",
"license": "MIT",
"author": "Atriumn",
"homepage": "https://github.com/atriumn/cryyer#readme",
"repository": {
"type": "git",
"url": "https://github.com/atriumn/cryyer.git"
},
"bugs": {
"url": "https://github.com/atriumn/cryyer/issues"
},
"keywords": [
"email",
"newsletter",
"beta-testers",
"llm",
"automation",
"mcp"
],
"engines": {
"node": ">=20"
},
"packageManager": "pnpm@9.15.0",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist/",
"templates/",
"products/example.yaml",
".env.example",
"subscribers.example.json",
"README.md",
"LICENSE"
],
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
},
"./mcp": {
"import": "./dist/mcp.js",
"types": "./dist/mcp.d.ts"
}
},
"bin": {
"cryyer-mcp": "./dist/mcp.js",
"cryyer": "./dist/cli.js"
},
"scripts": {
"build": "tsc -p tsconfig.build.json",
"prepublishOnly": "rm -rf dist && pnpm run build",
"start": "node dist/index.js",
"dev": "pnpm run build && pnpm start",
"typecheck": "tsc --noEmit",
"lint": "eslint src --ext .ts",
"test": "vitest run",
"test:coverage": "vitest run --coverage",
"test:watch": "vitest",
"mcp": "node dist/mcp.js",
"check": "node dist/check.js",
"init": "node dist/init.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.78.0",
"@google/generative-ai": "^0.24.1",
"@modelcontextprotocol/sdk": "^1.27.0",
"@supabase/supabase-js": "^2.47.10",
"google-auth-library": "^10.5.0",
"google-spreadsheet": "^5.2.0",
"octokit": "^5.0.5",
"openai": "^6.24.0",
"resend": "^6.9.2",
"yaml": "^2.7.0",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.3.0",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.0.2",
"typescript": "^5.7.3",
"vitest": "^4.0.18"
},
"pnpm": {
"overrides": {
"minimatch": ">=10.2.3"
}
}
}