-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.41 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.41 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
{
"name": "@ayako/utility",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"build": "rm -f tsconfig.tsbuildinfo && pnpm tsc --emitDeclarationOnly && swc src -d dist --strip-leading-paths",
"lint": "pnpx eslint 'src/**/*.ts' --fix"
},
"exports": {
".": "./dist/index.js"
},
"dependencies": {
"@discordjs/core": "^2.4.0",
"cbor-x": "^1.6.0",
"discord-api-types": "0.38.41",
"dotenv": "^17.3.1",
"ioredis": "^5.10.0"
},
"devDependencies": {
"@babel/eslint-parser": "^7.28.6",
"@babel/eslint-plugin": "^7.27.1",
"@eslint/compat": "^2.0.2",
"@eslint/js": "^10.0.1",
"@swc/cli": "^0.8.0",
"@swc/core": "1.15.18",
"@total-typescript/ts-reset": "^0.6.1",
"@types/bun": "latest",
"@types/node": "^25.3.5",
"@typescript-eslint/eslint-plugin": "^8.56.1",
"@typescript-eslint/parser": "^8.56.1",
"eslint": "^10.0.2",
"eslint-config-airbnb": "^19.0.4",
"eslint-config-prettier": "^10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-json": "^4.0.1",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"packageManager": "pnpm@10.19.0",
"engines": {
"node": ">=24.13.0",
"pnpm": ">=10.19.0"
}
}