-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.29 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.29 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
{
"name": "seo-engine",
"version": "0.1.0",
"description": "I/O-agnostic SEO content generation engine: keyword discovery, LLM scoring, and blog generation via pluggable adapters",
"license": "MIT",
"type": "module",
"private": false,
"main": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"import": "./dist/src/index.js",
"types": "./dist/src/index.d.ts"
},
"./adapters/llm/bedrock": {
"import": "./dist/src/adapters/llm/bedrock.js",
"types": "./dist/src/adapters/llm/bedrock.d.ts"
},
"./adapters/llm/openai": {
"import": "./dist/src/adapters/llm/openai.js",
"types": "./dist/src/adapters/llm/openai.d.ts"
},
"./adapters/storage/supabase": {
"import": "./dist/src/adapters/storage/supabase.js",
"types": "./dist/src/adapters/storage/supabase.d.ts"
},
"./adapters/storage/memory": {
"import": "./dist/src/adapters/storage/memory.js",
"types": "./dist/src/adapters/storage/memory.d.ts"
}
},
"bin": {
"seo-engine": "./dist/cli/index.js"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx cli/index.ts",
"clean": "rm -rf dist",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"dry-run": "tsx tests/dry-run/index.ts",
"prepublishOnly": "npm run build"
},
"peerDependencies": {
"@aws-sdk/client-bedrock-runtime": ">=3",
"@supabase/supabase-js": ">=2",
"openai": ">=4"
},
"peerDependenciesMeta": {
"@aws-sdk/client-bedrock-runtime": { "optional": true },
"@supabase/supabase-js": { "optional": true },
"openai": { "optional": true }
},
"devDependencies": {
"@aws-sdk/client-bedrock-runtime": "^3.0.0",
"@supabase/supabase-js": "^2.0.0",
"@types/node": "^22.0.0",
"dotenv": "^16.0.0",
"openai": "^4.0.0",
"tsx": "^4.0.0",
"typescript": "^5.0.0",
"vitest": "^2.0.0"
},
"dependencies": {
"dotenv": "^16.0.0"
},
"keywords": [
"seo",
"content-generation",
"keyword-research",
"google-suggest",
"llm",
"bedrock",
"openai",
"blog-generation",
"b2b-saas"
],
"repository": {
"type": "git",
"url": "https://github.com/your-org/seo-engine.git"
}
}