-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.53 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.53 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
{
"name": "hyper-vibe-coding-course",
"version": "1.0.0",
"description": "Course content + launch kit for Vibe Coding Foundations (Course 1), including curriculum, email sequences, gamification, marketing assets, and a deployable landing page.",
"main": "index.js",
"type": "commonjs",
"directories": {
"doc": "docs",
"test": "tests"
},
"scripts": {
"test": "npm --prefix frontend test --",
"test:frontend": "npm --prefix frontend test --",
"test:api": "npm --prefix apps/api test --",
"sync-course": "npm --prefix agents/course-content-agent run sync-course --",
"dev:frontend": "npm --prefix frontend run dev",
"dev:api": "npm --prefix apps/api run dev",
"build": "npm --prefix frontend run build",
"ai-gateway:pull-env": "vercel env pull .env.local",
"ai-gateway:smoke": "node --env-file=.env.local index.mjs",
"ai-gateway:summarize": "node --env-file=.env.local tools/ai/summarize.mjs",
"ai-gateway:triage": "node --env-file=.env.local tools/ai/triage.mjs"
},
"devDependencies": {
"@playwright/test": "^1.58.2",
"@types/node": "^25.5.0"
},
"dependencies": {
"ai": "^6.0.190",
"undici-types": "^7.18.2",
"viem": "^2.48.11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/welshDog/Hyper-Vibe-Coding-Course.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/welshDog/Hyper-Vibe-Coding-Course/issues"
},
"homepage": "https://github.com/welshDog/Hyper-Vibe-Coding-Course#readme"
}