-
Notifications
You must be signed in to change notification settings - Fork 241
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.17 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.17 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
{
"name": "trieve",
"version": "1.0.0",
"private": true,
"main": "index.js",
"workspaces": [
"frontends/search",
"frontends/chat",
"frontends/dashboard",
"frontends/shared",
"frontends/config",
"clients/ts-sdk",
"clients/search-component",
"clients/mcp-server"
],
"scripts": {
"dev": "turbo dev --filter=\"./frontends/**\"",
"build": "turbo build",
"build:all": "turbo build --filter=\"./frontends/**\"",
"build:clean-client": "./convenience.sh -c",
"trieve-cli": "node ./clients/agentic-rag-cli/dist/index.js",
"lint": "turbo lint --filter=\"./frontends/**\"",
"lint:CI": "turbo lint:CI --filter=\"./frontends/**\"",
"typecheck": "turbo typecheck --filter=\"./frontends/**\""
},
"repository": "git@github.com:devflowinc/trieve.git",
"author": "Drew Harris <harrisd@smu.edu>",
"license": "MIT",
"devDependencies": {
"turbo": "^2.0.4"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"dependencies": {
"conf": "^14.0.0",
"homedir": "^0.6.0",
"os": "^0.1.2"
}
}