This repository has been archived by the owner on Sep 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
74 lines (74 loc) · 2.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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "fluorine",
"version": "2.0.3",
"description": "A discord bot",
"private": true,
"type": "module",
"main": "dist",
"scripts": {
"test": "npm run lint && npm run test:typescript",
"test:typescript": "tsc --noEmit",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"dev": "tsx watch src/index.ts",
"build": "rm -rf ./dist/ && tsc",
"start": "cross-env NODE_ENV=production node --enable-source-maps ."
},
"imports": {
"#*": "./dist/*/index.js",
"#builders": "./dist/classes/builders/index.js",
"#builderBases": "./dist/classes/builders/bases/index.js",
"#commands": "./dist/classes/builders/commands/index.js",
"#components": "./dist/classes/builders/components/index.js",
"#handlers": "./dist/classes/handlers/index.js",
"#modules": "./dist/classes/modules/index.js",
"#options": "./dist/classes/builders/options/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Fluorinebot/fluorine.git"
},
"contributors": [
"Xiboon <[email protected]> (https://xiboon.me)",
"Superchupu <[email protected]>",
"night-lake <[email protected]>"
],
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/Fluorinebot/fluorine/issues"
},
"homepage": "https://github.com/Fluorinebot/fluorine/#readme",
"dependencies": {
"@fastify/cookie": "^8.3.0",
"@fastify/cors": "^8.2.1",
"@napi-rs/canvas": "^0.1.39",
"@prisma/client": "^4.11.0",
"bufferutil": "^4.0.7",
"discord.js": "^14.8.0",
"dotenv": "^16.0.3",
"fast-jwt": "^2.2.0",
"fastify": "^4.14.1",
"i18next": "^22.4.12",
"i18next-fs-backend": "^2.1.1",
"ms": "^3.0.0-canary.1",
"murmurhash-v3": "^1.0.2",
"neon-env": "^0.2.0",
"utf-8-validate": "^6.0.3",
"yoctocolors": "^1.0.0",
"zlib-sync": "^0.1.8"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"cross-env": "^7.0.3",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-plugin-prettier": "^4.2.1",
"prisma": "^4.11.0",
"tsx": "^3.12.5",
"typescript": "^5.0.2"
},
"engines": {
"node": ">=18.0.0"
}
}