-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.53 KB
/
Copy pathpackage.json
File metadata and controls
88 lines (88 loc) · 2.53 KB
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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"$schema": "https://json.schemastore.org/package",
"name": "logos",
"description": "The application for language & linguistics communities on Discord.",
"license": "Apache-2.0",
"version": "0.1.0",
"type": "module",
"keywords": [
"discord",
"bot",
"definitions",
"translation",
"language-recognition",
"games",
"guides",
"language",
"linguistics",
"dictionaries",
"translators",
"detectors",
"localised"
],
"homepage": "https://logos.wordcollector.co.uk",
"repository": {
"type": "git",
"url": "https://github.com/vxern/logos"
},
"bugs": {
"url": "https://github.com/vxern/logos",
"email": "vxern@wordcollector.co.uk"
},
"contributors": [
{
"name": "Dorian \"vxern\" Oszczęda",
"email": "vxern@wordcollector.co.uk",
"url": "https://github.com/vxern"
}
],
"scripts": {
"### CORE ############################################################": "",
"check": "biome check --write --unsafe ./scripts/ ./source/ && tsc",
"develop": "bun run ./scripts/develop.ts",
"start": "bun run ./scripts/run.ts",
"setup": "bun load:sentence_pairs",
"### COMMANDS ########################################################": "",
"database:migrate": "bun run ./scripts/database/migrate.ts",
"load:sentences": "bun run ./scripts/load/sentence-pairs.ts",
"generate:migration": "bun run ./scripts/generate/migration.ts",
"### ALIASES #########################################################": "",
"g:migration": "bun run generate:migration",
"l:sentences": "bun run load:sentences",
"db:migrate": "bun run database:migrate",
"db:rollback": "bun run database:migrate --rollback"
},
"dependencies": {
"@discordeno/bot": "21.0.1-next.bd37023",
"@vxern/eld": "^1.1.0",
"cldpre": "^2.9.0",
"dexonline-scraper": "^0.2.3",
"diff": "^9.0.0",
"dotenv": "^17.4.2",
"fastest-levenshtein": "^1.0.16",
"fasttext.wasm.js": "^1.0.0",
"ioredis": "^5.10.1",
"mongodb": "^7.1.1",
"nano": "^11.0.5",
"nanoid": "^5.1.9",
"object-hash": "^3.0.0",
"pino": "^10.3.1",
"ravendb": "^7.2.0",
"rethinkdb-ts": "^3.0.0",
"tinyld": "^1.3.4",
"wiktionary-scraper": "^0.0.6",
"youtubei": "^1.8.5"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/bun": "^1.3.12",
"@types/chai": "^5.2.3",
"@types/object-hash": "^3.0.6",
"chai": "^6.2.2",
"pino-pretty": "^13.1.3",
"typescript": "^6.0.2"
},
"trustedDependencies": [
"@biomejs/biome"
]
}