-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.14 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.14 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
{
"name": "@stelliajs/framework",
"version": "1.7.2",
"type": "module",
"description": "A framework for simplifying the creation of discord bots",
"author": "Tweenty_",
"license": "ISC",
"packageManager": "pnpm@10.33.2",
"engines": {
"node": ">=20.19.0"
},
"engineStrict": true,
"keywords": ["discord", "bot", "discordjs", "typescript", "framework"],
"repository": {
"type": "git",
"url": "https://github.com/StelliaJS/framework.git"
},
"files": ["dist"],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs"
},
"./package.json": "./package.json"
},
"scripts": {
"build": "tsdown",
"lint": "eslint src",
"format": "prettier --write ./src/**/*.ts"
},
"dependencies": {
"discord.js": "^14.26.4",
"i18next": "^26.0.8",
"log-symbols": "^7.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.3.0",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"globals": "^17.6.0",
"jiti": "^2.6.1",
"prettier": "^3.8.3",
"tsdown": "^0.21.10",
"typescript": "^6.0.3",
"typescript-eslint": "^8.59.1"
}
}