-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.2 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
{
"name": "llm-mafia",
"version": "1.0.0",
"description": "",
"main": "src/index.ts",
"scripts": {
"start": "ts-node src/index.tsx",
"start:dev": "nodemon --watch src --exec ts-node src/index.ts",
"demo": "ts-node src/demo/index.tsx",
"lint": "eslint",
"lint:fix": "eslint --fix",
"test": "jest"
},
"author": "nukeop",
"license": "AGPL-3.0",
"devDependencies": {
"@testing-library/react": "^16.0.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@types/jest": "^29.5.12",
"@types/lodash": "^4.17.5",
"@types/react": "^18.3.3",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"ink-testing-library": "^2.1.0",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^5.5.2"
},
"dependencies": {
"dotenv": "^16.4.5",
"ink": "^3.2.0",
"ink-spinner": "^4.0.3",
"lodash": "^4.17.21",
"openai": "^4.52.0",
"react": "^18.3.1",
"short-unique-id": "^5.2.0",
"winston": "^3.13.0"
}
}