-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.49 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.49 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
{
"name": "geo-lib",
"version": "0.0.0",
"private": true,
"description": "Generative Engine Optimization - AI'ın içeriğe nasıl baktığını anlamak için açık kaynak kütüphane",
"keywords": ["geo", "generative-engine-optimization", "ai", "seo", "llm", "chatgpt", "perplexity"],
"license": "MIT",
"author": "Eren Çöp <contact@erencop.dev>",
"repository": {
"type": "git",
"url": "https://github.com/erennc/generative-engine-optimization"
},
"homepage": "https://github.com/erennc/generative-engine-optimization",
"bugs": {
"url": "https://github.com/erennc/generative-engine-optimization/issues"
},
"workspaces": [
"packages/*",
"apps/*"
],
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"test": "turbo test",
"lint": "turbo lint",
"lint:fix": "turbo lint:fix",
"format": "turbo format",
"type-check": "turbo type-check",
"clean": "turbo clean && rm -rf node_modules",
"prepublish": "pnpm build && pnpm test && pnpm lint",
"publish-packages": "pnpm prepublish && pnpm -r publish --access public",
"version": "pnpm version"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"turbo": "^2.0.0",
"typescript": "^5.3.0"
},
"packageManager": "pnpm@9.0.0",
"engines": {
"node": ">=18.0.0"
}
}