-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 808 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 808 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
{
"name": "gemini-phone",
"version": "1.0.0",
"description": "Voice interface for Gemini via SIP/Twilio",
"private": true,
"scripts": {
"test": "npm run test:cli && npm run test:voice-app",
"test:cli": "cd cli && npm test",
"test:voice-app": "cd voice-app && node --test test/**/*.test.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:voice-app": "eslint voice-app/",
"lint:api-server": "eslint gemini-api-server/",
"setup": "cd cli && node bin/gemini-phone.js setup",
"start": "cd cli && node bin/gemini-phone.js start",
"precommit": "npm run lint",
"prepare": "husky"
},
"devDependencies": {
"eslint": "^8.56.0",
"husky": "^9.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"author": "Manoj Kasula",
"license": "MIT"
}