-
-
Notifications
You must be signed in to change notification settings - Fork 53
/
package.json
44 lines (44 loc) · 1.29 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
{
"name": "discord-needle",
"version": "3.4.0",
"description": "Needle is a discord bot that helps you manage your discord threads.",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"build": "rd /s /q dist & tsc --sourceMap",
"start": "npm run build && node --enable-source-maps ./dist/index.js",
"undeploy": "npm run build && node ./scripts/deploy-commands.js --undeploy",
"deploy": "npm run undeploy && node ./scripts/deploy-commands.js",
"lint": "eslint . && prettier --check .",
"lint:fix": "eslint --fix . && prettier --write ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/MarcusOtter/discord-needle.git"
},
"author": "Marcus Otterström",
"license": "AGPL-3.0-or-later",
"bugs": {
"url": "https://github.com/MarcusOtter/discord-needle/issues"
},
"homepage": "https://github.com/MarcusOtter/discord-needle",
"dependencies": {
"@discordjs/rest": "^2.3.0",
"discord.js": "^14.14.1",
"dotenv": "^16.4.5",
"safe-regex": "^2.1.1"
},
"devDependencies": {
"@types/safe-regex": "^1.1.6",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.2.5",
"typescript": "^5.4.3"
},
"engines": {
"node": ">=16.9.x",
"npm": "*"
}
}