forked from TCCPP/wheatley
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.56 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.56 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
74
75
76
77
78
79
{
"name": "wheatley",
"version": "0.1.0",
"description": "",
"author": "",
"type": "module",
"dependencies": {
"@discordjs/rest": "^2.6.0",
"@sentry/node": "^10.32.1",
"@types/stack-trace": "^0.0.33",
"@xenova/transformers": "^2.17.2",
"any-ascii": "^0.3.3",
"axios": "^1.13.2",
"chalk": "<5.0.0",
"deep-equal": "^2.2.3",
"diff": "^8.0.2",
"discord.js": "^14.25.1",
"dismark": "^0.1.1",
"express": "^5.2.1",
"glob": "^13.0.0",
"gray-matter": "^4.0.3",
"jsonc-parser": "^3.3.1",
"markdown-it": "^14.1.0",
"moment": "^2.30.1",
"mongodb": "^7.0.0",
"openai": "^6.16.0",
"path-scurry": "^2.0.1",
"prom-client": "^15.1.3",
"stack-trace": "^1.0.0-pre2",
"typescript": "^5.9.3",
"xxhashjs": "^0.2.2"
},
"scripts": {
"start": "tsc && unbuffer cross-env NODE_ENV=production node --enable-source-maps build/src/main.js 2>&1 | tee -a log.txt",
"lint": "eslint src",
"lint-files": "eslint --color",
"prepare": "husky install",
"test": "vitest run",
"format": "prettier src test eslint.config.mjs --write",
"format-check": "prettier src test eslint.config.mjs --check",
"format-check-files": "prettier src test eslint.config.mjs --check",
"format-files": "prettier src test eslint.config.mjs --write --ignore-unknown",
"ts-check": "tsc --noEmit",
"build": "tsc"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "~9.39.2",
"@types/deep-equal": "^1.0.4",
"@types/diff": "^8.0.0",
"@types/express": "^5.0.6",
"@types/markdown-it": "^14.1.2",
"@types/node": "^25.0.6",
"@types/node-fetch": "^2.6.13",
"@types/ws": "^8.18.1",
"@types/xxhashjs": "^0.2.4",
"@typescript-eslint/eslint-plugin": "^8.52.0",
"@typescript-eslint/parser": "^8.52.0",
"cross-env": "^10.1.0",
"eslint": "~9.39.2",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.0.0",
"husky": "^9.1.7",
"linkedom": "^0.18.12",
"lint-staged": "^16.2.7",
"ml-pca": "^4.1.1",
"node-fetch": "^3.3.2",
"prettier": "3.7.4",
"umap-js": "^1.4.0",
"vitest": "^4.0.16"
},
"lint-staged": {
"*.[jt]s": [
"npm run format-check-files --",
"npm run lint-files --"
]
}
}