-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.11 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.11 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
{
"name": "rotunes",
"version": "0.1.0",
"description": "W Discord Bot",
"type": "module",
"main": "src/index.ts",
"scripts": {
"start": "node --env-file-if-exists=.env --experimental-strip-types --experimental-transform-types src/index.ts",
"test": "node --env-file-if-exists=.env --experimental-strip-types --experimental-transform-types --test",
"lint": "eslint . && prettier . && tsc --noEmit",
"fixlint": "eslint --fix . && prettier --write . && tsc --noEmit",
"updateall": "ncu -u && npm install"
},
"dependencies": {
"@discordjs/builders": "^1.11.3",
"@discordjs/voice": "^0.19.0",
"discord-api-types": "^0.38.26",
"discord.js": "^14.22.1",
"domutils": "^3.2.2",
"jsdom": "^27.0.0",
"mongodb": "^6.20.0",
"moonlink.js": "^4.60.18",
"ollama": "^0.6.0",
"openblox": "1.0.62",
"sharp": "^0.34.4",
"texsvg": "^3.0.0",
"puppeteer": "^24.22.3"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"eslint": "^9.36.0",
"globals": "^16.4.0",
"jiti": "^2.6.0",
"prettier": "^3.6.2",
"typescript": "^5.9.2",
"typescript-eslint": "^8.44.1"
},
"engines": {
"node": ">=16.0.0"
}
}