-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.6 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
{
"name": "aa",
"version": "1.0.0",
"description": "This is a Node.js program that allows for conversational interactions with OpenAI's GPT API",
"main": "dist/alfredEntry.js",
"scripts": {
"build": "mkdir -p rec && webpack",
"buildDev": "webpack --watch --progress",
"dev": "ANTHROPIC_API_KEY=$(cat ~/Dropbox/keys/.anthropic) OPENAI_API_KEY=$(cat ~/Dropbox/keys/.openAiKey) NODE_ENV=development npx ts-node-dev --respawn src/index.ts",
"start": "ANTHROPIC_API_KEY=$(cat ~/Dropbox/keys/.anthropic) OPENAI_API_KEY=$(cat ~/Dropbox/keys/.openAiKey) node dist/server.js"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.24.2",
"@tsconfig/recommended": "^1.0.2",
"@types/express": "^4.17.17",
"@types/lodash": "^4.14.194",
"@types/shell-quote": "^1.7.1",
"@typescript-eslint/eslint-plugin": "^5.59.6",
"axios": "^1.4.0",
"eslint": "^8.40.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.7.0",
"eslint-plugin-promise": "^6.1.1",
"execa": "^7.1.1",
"express": "^4.18.2",
"form-data": "^4.0.0",
"lodash": "^4.17.21",
"nodemon": "^2.0.22",
"shell-quote": "^1.8.1",
"ts-loader": "^9.4.2",
"ts-node": "^10.9.1",
"ts-node-dev": "^2.0.0",
"typescript": "^5.0.4",
"webpack": "^5.82.1",
"webpack-cli": "^5.1.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yangit/aa.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/yangit/aa/issues"
},
"homepage": "https://github.com/yangit/aa#readme"
}