-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.38 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.38 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
{
"name": "arithmetica",
"version": "1.2.0",
"private": true,
"type": "module",
"description": "Discord Bot for counting. Allows arithmetic expressions.",
"main": "src/app.js",
"engines": {
"node": ">=20.0.0"
},
"scripts": {
"start:dev": "npm run lint && cross-env NODE_ENV=development node src/app.js",
"start:prod": "cross-env NODE_ENV=production node src/app.js",
"start": "npm run start:dev",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"generate-config": "node scripts/generate-config.js",
"pull-and-restart": "node scripts/pull-and-restart.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NullDev/Arithmetica-Bot.git"
},
"bugs": {
"url": "https://github.com/NullDev/Arithmetica-Bot/issues"
},
"homepage": "https://github.com/NullDev/Arithmetica-Bot#readme",
"author": "NullDev",
"license": "AGPL-3.0-only",
"devDependencies": {
"@babel/core": "^7.27.1",
"@babel/eslint-parser": "^7.27.1",
"cross-env": "^7.0.3",
"eslint": "^9.26.0"
},
"dependencies": {
"better-sqlite3": "^11.9.1",
"canvas": "^3.1.0",
"check-dependencies": "^2.0.0",
"discord-hybrid-sharding": "^2.2.6",
"discord.js": "^14.26.3",
"fastify": "^5.8.5",
"i18n-light": "^0.5.4",
"mathjs": "^15.2.0",
"nerdamer": "^1.1.13",
"node-cron": "^4.2.1",
"quick.db": "^9.1.7"
}
}