-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.68 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
53
54
55
56
57
58
{
"name": "@persanix-llc/chatrpi-server",
"version": "0.1.2",
"description": "Chat for Raspberry Pi (Chatrpi) is a voice assistant for the Raspberry Pi that can hold simple conversations and control GPIO output.",
"homepage": "https://github.com/persanix-llc/chatrpi-server",
"repository": {
"type": "git",
"url": "https://github.com/persanix-llc/chatrpi-server.git"
},
"license": "Apache-2.0",
"author": "Persanix LLC",
"bugs": {
"url": "https://github.com/persanix-llc/chatrpi-server/issues"
},
"contributors": [
"John Persano (https://github.com/jmp-12)"
],
"main": "index.js",
"files": [
"/out"
],
"scripts": {
"copy-chatrpi-app": "copyfiles public/** out",
"build": "tsc",
"postbuild": "yarn run copy-chatrpi-app",
"prepublish": "yarn run build",
"prestart": "yarn run build",
"start": "node ./out/index.js"
},
"engines": {
"node": ">=16"
},
"bin": {
"chatrpi": "./out/index.js"
},
"dependencies": {
"axios": "1.4.0",
"chalk": "4.1.2",
"cors": "2.8.5",
"express": "4.18.2",
"openai": "3.3.0",
"ora": "5.4.1",
"winston": "3.10.0",
"yargs": "17.7.2"
},
"devDependencies": {
"@types/cors": "2.8.13",
"@types/express": "4.17.17",
"@types/morgan": "1.9.4",
"@types/yargs": "17.0.24",
"@typescript-eslint/eslint-plugin": "6.3.0",
"@typescript-eslint/parser": "6.3.0",
"copyfiles": "2.4.1",
"eslint": "8.46.0",
"eslint-plugin-import": "2.28.0",
"typescript": "5.1.6"
}
}