-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
54 lines (54 loc) · 1.48 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": "oishii-bot",
"version": "3.4.2",
"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": "biome lint src --write",
"format": "biome format src --write",
"migration": "node built/migration.js",
"migrateandstart": "pnpm run migration && pnpm start"
},
"dependencies": {
"got": "^14.4.4",
"iconv-lite": "^0.6.3",
"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.2",
"pg": "^8.13.1",
"seedrandom": "^3.0.5",
"ws": "^8.18.0"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/moji": "^0.5.3",
"@types/ms": "^0.7.34",
"@types/node": "^20.17.6",
"@types/pg": "^8.11.10",
"@types/seedrandom": "^3.0.8",
"@types/ws": "^8.5.13",
"iconv-lite": "^0.6.3",
"tsx": "^4.19.2",
"typescript": "^5.6.3"
},
"optionalDependencies": {
"bufferutil": "^4.0.8",
"utf-8-validate": "^6.0.5"
},
"packageManager": "[email protected]+sha512.b2dc20e2fc72b3e18848459b37359a32064663e5627a51e4c74b2c29dd8e8e0491483c3abb40789cfd578bf362fb6ba8261b05f0387d76792ed6e23ea3b1b6a0"
}