-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.6 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.6 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
{
"name": "auguste",
"private": true,
"version": "0.1.0",
"packageManager": "pnpm@8.15.5",
"description": "The Gold Standard of Meal Planning — An open-source, agentic meal planner inspired by Auguste Escoffier",
"scripts": {
"test": "turbo test",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"dev": "turbo dev",
"build": "turbo build",
"studio": "turbo studio --filter @auguste/core",
"seed": "pnpm exec tsx scripts/seed.ts",
"verify": "bash scripts/verify-setup.sh",
"db:generate": "drizzle-kit generate",
"db:migrate": "pnpm exec tsx packages/core/src/domain/db/migrate.ts",
"lint": "turbo lint",
"check": "turbo check",
"type-check": "turbo type-check",
"format": "biome format .",
"format:fix": "biome format --write .",
"knip": "knip"
},
"keywords": [
"meal-planning",
"ai",
"agents",
"mastra",
"family",
"recipes",
"escoffier",
"openrouter",
"llm"
],
"author": "Auguste Contributors",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Nightbr/auguste.git"
},
"bugs": {
"url": "https://github.com/Nightbr/auguste/issues"
},
"homepage": "https://github.com/Nightbr/auguste#readme",
"engines": {
"node": ">=24.0.0"
},
"devDependencies": {
"@biomejs/biome": "^2.3.11",
"@types/node": "^25.0.3",
"@vitest/coverage-v8": "^4.0.16",
"drizzle-kit": "^0.31.8",
"knip": "^5.81.0",
"mastra": "^1.0.0-beta.12",
"tsx": "^4.21.0",
"turbo": "^2.7.4",
"typescript": "^5.9.3",
"vitest": "^4.0.16"
}
}