-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.01 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
{
"name": "bread-framework",
"version": "0.0.1",
"description": "",
"main": "dist/index.js",
"exports": {
".": {
"default": "./dist/index.js",
"types": "./src/index.d.ts"
},
"./register": "./register-loader.js"
},
"type": "module",
"engines": {
"node": ">=20.12.0"
},
"typings": "src/index.d.ts",
"scripts": {
"build": "rm -rf dist/ ; tsc",
"check": "eslint . && tsc --noEmit",
"test": "npm run check"
},
"keywords": [],
"author": "AshyBoxy <[email protected]>",
"license": "MIT",
"dependencies": {
"discord.js": "^14.16.3",
"leveldown": "^6.1.1",
"levelup": "^5.1.1",
"resolve": "^1.22.8"
},
"devDependencies": {
"@types/leveldown": "^4.0.6",
"@types/levelup": "^5.1.5",
"@types/node": "^22.8.6",
"eslint": "^9.14.0",
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@stylistic/eslint-plugin": "^2.10.1",
"globals": "^15.11.0",
"typescript": "^5.6.3",
"typescript-eslint": "^8.12.2"
}
}