-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.81 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.81 KB
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "chaite",
"version": "1.9.2",
"description": "core for chatgpt-plugin and karin-plugin-chatgpt",
"keywords": [
"yunzai",
"karin",
"chatgpt"
],
"license": "ISC",
"author": "ikechan8370",
"sideEffects": true,
"type": "module",
"main": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"frontend",
"LICENSE",
"README.md",
"package.json"
],
"scripts": {
"build": "tsc --noEmit && tsdown",
"dev": "nodemon --exec ts-node src/index.ts",
"lint": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix",
"prebuild": "node scripts/generate-version.js",
"prepublishOnly": "npm run build",
"pub": "npm publish --access public",
"test": "jest"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.39.0",
"@eslint/js": "^9.21.0",
"@google/genai": "^1.8.0",
"@karinjs/node-schedule": "^1.1.2",
"@types/cors": "^2.8.17",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/jsonwebtoken": "^9.0.9",
"@types/node": "^20.17.24",
"@typescript-eslint/eslint-plugin": "^8.25.0",
"@typescript-eslint/parser": "^8.25.0",
"axios": "^1.8.1",
"chokidar": "^4.0.3",
"copyfiles": "^2.4.1",
"cors": "^2.8.5",
"eslint": "^9.21.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-prettier": "^5.2.3",
"express": "^4.21.2",
"jest": "^29.7.0",
"jsonwebtoken": "^9.0.2",
"mammoth": "^1.9.0",
"openai": "^5.20.1",
"pdf-parse": "^2.4.5",
"prettier": "^3.5.2",
"reflect-metadata": "^0.2.2",
"ts-jest": "^29.2.6",
"tsdown": "^0.16.0",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0"
},
"peerDependencies": {
"pdf-parse": "^2.4.5"
},
"peerDependenciesMeta": {
"pdf-parse": {
"optional": true
}
}
}