-
Notifications
You must be signed in to change notification settings - Fork 157
/
package.json
47 lines (47 loc) · 1.31 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
{
"name": "ai-legion",
"version": "1.0.0",
"description": "My name is Legion, for we are many",
"main": "src/main.ts",
"scripts": {
"build": "npm run compile && npm run lint && npm run format:check",
"compile": "tsc",
"format": "npm run prettier -- --write .",
"format:check": "npm run prettier -- --check .",
"lint": "eslint src --max-warnings=0",
"prettier": "prettier --ignore-path .gitignore",
"start": "ts-node src/main.ts",
"test": "jest",
"test:watch": "jest --watch"
},
"keywords": [],
"author": "eumemic@gmail.com",
"license": "MIT",
"devDependencies": {
"@types/postlight__mercury-parser": "^2.2.4",
"@types/ws": "^8.5.4",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.37.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"dependencies": {
"@types/jest": "^29.5.0",
"@types/lodash": "^4.14.191",
"@types/node": "^18.15.3",
"@types/turndown": "^5.0.1",
"dotenv": "^16.0.3",
"googleapis": "^114.0.0",
"gpt-3-encoder": "^1.1.4",
"jest": "^29.5.0",
"lodash": "^4.17.21",
"openai": "^3.2.1",
"prettier": "^2.8.7",
"puppeteer": "^19.8.5",
"redis": "^4.6.5",
"ts-jest": "^29.0.5",
"turndown": "^7.1.2",
"ws": "^8.13.0"
}
}