-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
54 lines (54 loc) · 1.53 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
52
53
54
{
"name": "@autumnblaze/sani-soda-bot",
"version": "1.0.0",
"description": "",
"main": "build/bot.js",
"private": true,
"scripts": {
"build": "rm -rf build && tsc",
"dev": "tsc -p tsconfig.json -w --preserveWatchOutput",
"start": "node build/d.js",
"buildandstart": "npm run build && npm start",
"lint": "eslint --ext .ts src/d.js",
"docs": "typedoc --out docs src",
"start:droff": "node build/droff"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PCelestia/sani.git"
},
"author": {
"name": "Alexander Liu (autumnblazey)",
"url": "https://github.com/autumnblazey/"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/PCelestia/sani/issues"
},
"engines": {
"node": "18.x"
},
"packageManager": "[email protected]",
"homepage": "https://github.com/PCelestia/sani#readme",
"dependencies": {
"bufferutil": "^4.0.3",
"discord.js": "^12.5.3",
"dotenv": "^16.3.1",
"droff": "^0.17.11",
"droff-helpers": "^0.2.13",
"droff-interactions": "^0.2.12",
"utf-8-validate": "^5.0.10"
},
"devDependencies": {
"@autumnblaze/eslint-config-h": "^1.0.0",
"@types/node": "^18.17.18",
"@types/ws": "^7.4.7",
"@typescript-eslint/eslint-plugin": "^6.7.2",
"@typescript-eslint/parser": "^6.7.2",
"eslint": "^8.49.0",
"eslint-plugin-functional": "^6.0.0",
"ts-prune": "^0.10.3",
"typedoc": "^0.25.1",
"typescript": "^5.2.2"
}
}