-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.83 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.83 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
{
"name": "offdjs",
"version": "3.0.0-beta.1",
"type": "module",
"description": "oneki framework for discord.js",
"main": "lib/index.js",
"bin": "lib/cli.js",
"exports": {
".": "./lib/index.js",
"./djs": "./lib/djs.js"
},
"scripts": {
"prepare": "npm run build",
"build": "tsc",
"start": "node lib/index.js",
"dev": "nodemon lib/index.js",
"test": "node tests/test.js",
"cli": "node lib/cli.js",
"prettier:check": "prettier src --check",
"prettier": "prettier src --write",
"lint": "eslint"
},
"keywords": [
"oneki",
"djs",
"discord.js",
"discordjs",
"discord-bot",
"bot",
"discord-api",
"discord",
"framework",
"node",
"nodejs",
"node.js"
],
"author": {
"name": "eliyya",
"email": "elimacmun@gmail.com",
"url": "https://twitter.com/eli_yya"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.9.0",
"@types/i18n": "0.13.12",
"@types/node": "22.5.0",
"eslint": "^9.9.0",
"eslint-config-prettier": "^9.1.0",
"globals": "^15.9.0",
"typescript": "5.5.4",
"typescript-eslint": "^8.2.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/OnekiDevs/offdjs.git"
},
"bugs": {
"url": "https://github.com/OnekiDevs/offdjs/issues"
},
"homepage": "https://github.com/OnekiDevs/offdjs#readme",
"dependencies": {
"commander": "12.1.0",
"discord.js": "^14.15.3",
"dotenv": "16.4.5",
"i18n": "0.15.1",
"just-extend": "6.2.0",
"prettier": "^3.3.3"
},
"engineStrict": true,
"engines": {
"node": ">=22.11.0"
}
}