-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 838 Bytes
/
package.json
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": "proaction",
"version": "0.1.0",
"description": "Proactive multi-agent AI assistant for AugmentOS",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"postbuild": "cp -r src/public dist/public",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@augmentos/sdk": "file:../../sdk",
"axios": "^1.3.4",
"dotenv": "^16.0.3",
"fs-extra": "^11.3.0",
"openai": "^4.0.0",
"wavefile": "^11.0.0",
"winston": "^3.17.0"
},
"devDependencies": {
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.0",
"@types/node": "^18.15.11",
"jest": "^29.5.0",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
}
}