-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
57 lines (57 loc) · 1.46 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
55
56
57
{
"name": "oishii-bot",
"version": "3.3.1",
"description": "",
"exports": "./built/index.js",
"license": "MIT",
"private": true,
"type": "module",
"engines": {
"node": ">=16"
},
"scripts": {
"start": "node built/index.js",
"dev": "tsx src/index.ts",
"clean": "node -e \"fs.rmSync('built', {recursive: true, force: true})\"",
"tsc": "tsc",
"tsc:check": "tsc --noEmit",
"build": "npm run clean && npm run tsc",
"lint": "eslint src",
"migration": "node built/migration.js"
},
"dependencies": {
"got": "^14.4.1",
"json5": "^2.2.3",
"memory-streams": "^0.1.3",
"mfm-js": "^0.24.0",
"moji": "^0.5.1",
"ms": "^2.1.3",
"partysocket": "^1.0.1",
"pg": "^8.12.0",
"seedrandom": "^3.0.5",
"ws": "^8.17.1"
},
"devDependencies": {
"@eslint/js": "^9.5.0",
"@types/eslint": "^8.56.10",
"@types/json5": "0.0.30",
"@types/moji": "^0.5.3",
"@types/ms": "^0.7.34",
"@types/node": "^20.14.8",
"@types/pg": "^8.11.6",
"@types/seedrandom": "^3.0.8",
"@types/ws": "^8.5.10",
"eslint": "^9.5.0",
"eslint-config-prettier": "9.1.0",
"iconv-lite": "^0.6.3",
"prettier": "3.3.2",
"tsx": "^4.15.7",
"typescript": "^5.5.2",
"typescript-eslint": "^7.13.1"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.4"
},
"packageManager": "[email protected]+sha256.b6fd0bfda555e7e584ad7e56b30c68b01d5a04f9ee93989f4b93ca8473c49c74"
}