-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
134 lines (134 loc) · 3.91 KB
/
package.json
File metadata and controls
134 lines (134 loc) · 3.91 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
{
"name": "sober-ai-optimizer",
"version": "0.3.0",
"description": "AI Agent Website Optimizer - Lighthouse for the AI Age. Evaluate and optimize websites for AI agent interactions with comprehensive audits and LLM-powered recommendations.",
"main": "src/electron/main.js",
"author": {
"name": "Nitish Agarwal",
"email": "nitishagar@gmail.com"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/nitishagar/sober-ai.git"
},
"bugs": {
"url": "https://github.com/nitishagar/sober-ai/issues"
},
"homepage": "https://github.com/nitishagar/sober-ai#readme",
"keywords": [
"ai-agents",
"website-optimization",
"llm",
"lighthouse",
"schema-org",
"seo",
"web-audit",
"ssr-detection",
"structured-data",
"website-analyzer",
"ai-crawler",
"semantic-html",
"content-analysis",
"developer-tools"
],
"scripts": {
"start": "node src/api/server.js",
"dev": "nodemon src/api/server.js",
"test": "jest --passWithNoTests",
"test:unit": "jest --selectProjects unit --passWithNoTests",
"test:integration": "jest --selectProjects integration --passWithNoTests --forceExit --runInBand",
"test:ci": "jest --passWithNoTests --forceExit --runInBand",
"test:watch": "jest --watch",
"lint": "eslint src/",
"verify": "npm run test:ci && npm run lint",
"format": "prettier --write 'src/**/*.js'",
"electron:dev": "electron .",
"electron:build": "electron-builder",
"electron:build:linux": "electron-builder --linux",
"electron:build:win": "electron-builder --win",
"electron:build:mac": "electron-builder --mac",
"docker:build": "docker-compose -f docker-compose.local.yml build",
"docker:up": "docker-compose -f docker-compose.local.yml up -d",
"docker:down": "docker-compose -f docker-compose.local.yml down",
"docker:logs": "docker-compose -f docker-compose.local.yml logs -f",
"ollama:pull": "docker exec sober-ollama-dev ollama pull qwen3:4b",
"db:generate": "prisma generate --schema=src/db/schema.prisma",
"db:migrate": "prisma migrate dev --schema=src/db/schema.prisma",
"db:migrate:deploy": "prisma migrate deploy --schema=src/db/schema.prisma",
"db:studio": "prisma studio --schema=src/db/schema.prisma",
"db:seed": "node src/db/seed.js",
"local:start": "bash start-local.sh",
"local:stop": "bash stop-local.sh",
"local:logs": "docker-compose -f docker-compose.local.yml logs -f",
"local:ps": "docker-compose -f docker-compose.local.yml ps"
},
"dependencies": {
"@prisma/client": "^6.16.3",
"@vitejs/plugin-react": "^4.7.0",
"axios": "^1.6.0",
"cors": "^2.8.5",
"dotenv": "^17.2.3",
"electron-store": "^11.0.2",
"express": "^4.18.2",
"express-rate-limit": "^8.1.0",
"js-yaml": "^4.1.0",
"playwright": "^1.40.0",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-router-dom": "^6.30.1",
"uuid": "^9.0.1",
"vite": "^6.3.6"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"electron": "^40.6.1",
"electron-builder": "^26.8.1",
"eslint": "^8.55.0",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"prettier": "^3.1.1",
"prisma": "^6.16.3",
"supertest": "^7.2.2"
},
"engines": {
"node": ">=22.0.0"
},
"build": {
"appId": "com.soberai.optimizer",
"productName": "SoberAI",
"directories": {
"output": "dist-electron"
},
"files": [
"src/**/*",
"frontend/dist/**/*",
"node_modules/**/*",
"package.json"
],
"extraResources": [
{
"from": "node_modules/.prisma",
"to": ".prisma"
}
],
"linux": {
"target": [
"deb",
"AppImage"
],
"category": "Development"
},
"win": {
"target": [
"nsis"
]
},
"mac": {
"target": [
"dmg"
],
"category": "public.app-category.developer-tools"
}
}
}