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