-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.35 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
{
"name": "@ceilingcat/id-bot",
"version": "0.0.6",
"description": "A discord bot to remind users to tag uploaded images with identifiers.",
"scripts": {
"lint": "eslint \"src/*/*.js\"",
"audit": "npm audit --registry=https://registry.npmjs.org",
"test": "vitest --coverage --config ./vitest.config.ts",
"check": "run-s lint audit test",
"start": "run-s execute",
"execute": "run-p auth-server id-bot",
"id-bot": "node src/js/node-starter.js",
"auth-server": "node src/js/auth-server.js"
},
"main": "build/src/js/id-bot.js",
"type": "module",
"keywords": [
"discord",
"bot",
"image",
"tagged",
"id"
],
"author": {
"name": "Chris Denman",
"email": "[email protected]"
},
"license": "Unlicense",
"repository": {
"type": "git",
"url": "https://github.com/chrisdenman/id-bot.git"
},
"bugs": {
"url": "https://github.com/chrisdenman/id-bot/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/chrisdenman/id-bot",
"dependencies": {
"discord-api-types": "^0.37.84",
"discord.js": "^14.14.1",
"express": "^4.19.2"
},
"devDependencies": {
"@eslint/js": "^9.1.1",
"@vitest/coverage-v8": "^1.6.0",
"@vitest/ui": "^1.6.0",
"eslint": "^8.33.0",
"npm-run-all2": "^6.1.2",
"vitest": "^1.6.0"
}
}