forked from TonyStef/Grov
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.23 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.23 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
{
"name": "grov",
"version": "0.5.11",
"description": "Collective AI memory for Claude Code - captures reasoning from sessions and injects context into future sessions",
"type": "module",
"main": "dist/cli.js",
"types": "dist/cli.d.ts",
"bin": {
"grov": "dist/cli.js"
},
"files": [
"dist/**/*.js",
"dist/**/*.d.ts",
"!dist/**/*.test.js",
"!dist/**/*.test.d.ts",
"postinstall.js",
"README.md",
"LICENSE"
],
"workspaces": [
"shared",
"dashboard",
"api",
"landing"
],
"scripts": {
"build": "tsc",
"build:all": "turbo run build",
"dev": "tsc --watch",
"dev:dashboard": "turbo run dev --filter=@grov/dashboard",
"dev:api": "turbo run dev --filter=@grov/api",
"start": "node dist/cli.js",
"proxy": "node dist/proxy/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:all": "turbo run test",
"typecheck": "turbo run typecheck",
"postinstall": "node postinstall.js",
"prepublishOnly": "npm run build && npm test && npm run security:scan",
"prepare": "husky",
"security:scan": "./scripts/scan-secrets.sh"
},
"keywords": [
"claude",
"claude-code",
"anthropic",
"ai",
"memory",
"reasoning",
"context",
"llm",
"developer-tools",
"cli"
],
"author": "Tony <github.com/TonyStef>",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git+https://github.com/TonyStef/Grov.git"
},
"bugs": {
"url": "https://github.com/TonyStef/Grov/issues",
"email": "stefvirgil2006@gmail.com"
},
"homepage": "https://grov.dev",
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1",
"better-sqlite3": "^11.6.0",
"commander": "^12.1.0",
"debug": "^4.4.3",
"dotenv": "^16.4.5",
"fastify": "^5.6.2",
"open": "^11.0.0",
"openai": "^4.70.0",
"pino": "^10.1.0",
"pino-pretty": "^13.1.2",
"undici": "^7.16.0"
},
"devDependencies": {
"@grov/shared": "workspace:*",
"@types/better-sqlite3": "^7.6.11",
"@types/debug": "^4.1.12",
"@types/node": "^22.19.1",
"husky": "^9.1.7",
"turbo": "^2.6.3",
"typescript": "^5.7.2",
"vitest": "^2.1.9"
},
"engines": {
"node": ">=20.0.0"
},
"packageManager": "pnpm@9.15.0"
}