-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
91 lines (91 loc) · 2.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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "x-bot",
"description": "Twitter / X bot for responding to mentions with AI-generated answers.",
"private": true,
"type": "module",
"license": "MIT",
"author": "Travis Fischer <[email protected]>",
"contributors": [
"Riley Tomasek <[email protected]>",
"Travis Fischer <[email protected]>"
],
"repository": {
"type": "git",
"url": "dexaai/xbot"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=18"
},
"scripts": {
"exec": "tsx bin/xbot.ts",
"prepare": "husky install",
"test": "run-s test:*",
"test:format": "prettier --check \"**/*.{js,ts,tsx}\"",
"test:lint": "eslint --cache --cache-location ./node_modules/.cache/eslint .",
"test:typecheck": "tsc --noEmit",
"test:unit": "vitest run"
},
"dependencies": {
"@dexaai/dexter": "^2.1.0",
"@keyv/redis": "^2.8.5",
"@nangohq/node": "^0.42.1",
"cleye": "^1.3.2",
"delay": "^6.0.0",
"dotenv-safe": "^9.1.0",
"ioredis": "^5.4.1",
"keyv": "^4.5.4",
"ky": "^1.4.0",
"ms": "^2.1.3",
"nanoid": "^5.0.7",
"openai": "^4.53.0",
"openai-fetch": "^2.0.4",
"p-map": "^7.0.2",
"p-memoize": "^7.1.1",
"p-throttle": "^6.1.0",
"quick-lru": "^7.0.0",
"random": "^4.1.0",
"tiny-invariant": "^1.3.3",
"twitter-api-sdk": "^1.2.1",
"twitter-utils": "^0.4.1",
"type-fest": "^4.23.0",
"url-regex": "^5.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@dexaai/eslint-config": "^1.3.1",
"@total-typescript/ts-reset": "^0.5.1",
"@types/dotenv-safe": "^8.1.6",
"@types/ms": "^0.7.34",
"@types/node": "^20.14.11",
"@types/twitter-text": "^3.1.10",
"eslint": "^8.56.0",
"husky": "^9.1.1",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"tsx": "^4.16.2",
"typescript": "^5.5.3",
"vite": "^5.3.4",
"vitest": "^1.6.0"
},
"lint-staged": {
"*.{ts,tsx}": [
"prettier --ignore-unknown --write"
]
},
"eslintConfig": {
"root": true,
"extends": [
"@dexaai/eslint-config",
"@dexaai/eslint-config/node"
],
"rules": {
"no-console": "off",
"import/order": "off",
"no-process-env": "off",
"no-use-before-define": "off",
"import/consistent-type-specifier-style": "off"
}
}
}