-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.23 KB
/
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"name": "@nomyx/assistant-cli",
"version": "2.2.9",
"description": "A javascript-based assistant that can help you with your daily tasks",
"main": "./index.js",
"publisher": "Nomyx",
"repository": {
"type": "git",
"url": "git+https://github.com/nomyx-io/ai-assistant-cli.git"
},
"scripts": {
"start": "node ./index.js",
"test": "jest"
},
"keywords": [
"AI",
"assistant",
"TypeScript"
],
"author": "Sebastian Schepis <sebastian.s@nomyx.io>",
"license": "ISC",
"dependencies": {
"@nomyx/assistant": "^2.0.0",
"axios": "^1.6.7",
"dependency-tree": "^10.0.9",
"dotenv": "^16.4.2",
"events": "^3.3.0",
"inquirer": "^6.0.0",
"jsdom": "^24.0.0",
"openai": "^4.27.0",
"play-sound": "^1.1.6",
"playht": "^0.9.6",
"shelljs": "^0.6.1",
"unique-username-generator": "^1.3.0",
"url": "^0.11.3",
"yaml-front-matter": "^4.1.1"
},
"bin": {
"assistant": "bin/assistant"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.19",
"install": "^0.13.0",
"jest": "^29.7.0",
"jest-fetch-mock": "^3.0.3",
"npm": "^10.4.0",
"ts-jest": "^29.1.2",
"typescript": "^5.3.3"
}
}