-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 1.01 KB
/
package.json
File metadata and controls
26 lines (26 loc) · 1.01 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
{
"name": "gemini-schedule-demo",
"version": "1.0.0",
"description": "A demo application showing how to use Google's Gemini API to create student schedules",
"main": "dist/dayplanner-tests.js",
"scripts": {
"build": "tsc",
"start": "npm run build && node dist/dayplanner-tests.js",
"dev": "ts-node --transpile-only dayplanner-tests.ts",
"test": "npm run build && node dist/dayplanner-tests.js",
"manual": "npm run build && node -e \"require('./dist/dayplanner-tests.js').testManualScheduling()\"",
"llm": "npm run build && node -e \"require('./dist/dayplanner-tests.js').testLLMScheduling()\"",
"mixed": "npm run build && node -e \"require('./dist/dayplanner-tests.js').testMixedScheduling()\""
},
"keywords": ["gemini", "ai", "schedule", "student", "demo", "typescript"],
"author": "Student Demo",
"license": "MIT",
"dependencies": {
"@google/generative-ai": "^0.21.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"typescript": "^5.0.0",
"ts-node": "^10.9.0"
}
}