-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 794 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 794 Bytes
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
{
"name": "edutube-notes",
"version": "1.0.0",
"description": "AI-powered note-taking for educational videos",
"main": "index.js",
"scripts": {
"dev:web": "cd apps/web && npm run dev",
"dev:api": "cd apps/api && npm run dev",
"build": "npm run build:web && npm run build:api",
"build:web": "cd apps/web && npm run build",
"build:api": "cd apps/api && npm run build",
"install:all": "npm install && cd apps/web && npm install && cd ../api && npm install"
},
"keywords": [
"hackathon",
"education",
"ai",
"notes",
"video",
"twelvelabs",
"gemini"
],
"author": "Your Name",
"license": "MIT",
"workspaces": [
"apps/*",
"packages/*"
],
"devDependencies": {
"typescript": "^5.0.0",
"dotenv": "^16.4.5"
}
}