-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.37 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.37 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
{
"name": "synthex",
"version": "1.0.0",
"description": "The Google Search for AI Agents - Local Open Source Version",
"private": true,
"workspaces": [
"frontend",
"backend"
],
"scripts": {
"setup": "node scripts/setup.js",
"install:all": "npm install && cd frontend && npm install && cd ../backend && npm install",
"dev": "concurrently \"npm run dev:backend\" \"npm run dev:frontend\"",
"dev:frontend": "cd frontend && npm run dev",
"dev:backend": "cd backend && npm run dev",
"build": "npm run build:backend && npm run build:frontend",
"build:frontend": "cd frontend && npm run build",
"build:backend": "cd backend && npm run build",
"start": "npm run build && concurrently \"npm run start:backend\" \"npm run start:frontend\"",
"start:frontend": "cd frontend && npm start",
"start:backend": "cd backend && npm start",
"prod": "npm run build && npm start",
"migrate": "node scripts/migrate-data.js",
"generate-embeddings": "node scripts/generate-embeddings.js"
},
"repository": {
"type": "git",
"url": "https://github.com/QuantumAgentic/Synthex.git"
},
"keywords": [
"ai",
"search",
"x402",
"web3",
"embeddings",
"vector-search",
"sqlite",
"local-first"
],
"author": "QuantumAgentic",
"license": "BSD-3-Clause",
"devDependencies": {
"concurrently": "^8.2.2"
}
}