forked from animeworldid/matsuri
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.48 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
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@animeworldindonesia/chitoge",
"private": "true",
"version": "0.0.0",
"description": "A useful Discord bot for Anime World Indonesia",
"main": "dist/main.js",
"type": "module",
"scripts": {
"build": "npm run lint && npm run compile",
"compile": "tsc --build tsconfig.json",
"lint": "eslint . --ignore-path .gitignore --ext .ts",
"lint:fix": "npm run lint -- --fix",
"start": "node --experimental-specifier-resolution=node dist/main",
"start:dev": "rimraf ./dist && npm run compile && concurrently --kill-others \"npm:watch\" \"npm:start\"",
"postinstall": "node .husky/prepare.cjs",
"watch": "tsc --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Anime-World-Indonesia/chitoge.git"
},
"keywords": [
"js",
"typescript"
],
"author": "Zen <zen@frutbits.org>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/Anime-World-Indonesia/chitoge/issues"
},
"engines": {
"node": ">=16.6.0",
"npm": ">=7.0.0"
},
"eslintConfig": {
"extends": "@hazmi35/eslint-config/typescript",
"ignorePatterns": "dist/*",
"rules": {
"@typescript-eslint/naming-convention": [
"error",
{
"selector": "default",
"format": [
"camelCase",
"PascalCase",
"snake_case",
"UPPER_CASE"
],
"leadingUnderscore": "allow",
"trailingUnderscore": "forbid"
},
{
"selector": "variable",
"modifiers": [
"destructured"
],
"format": null
}
]
}
},
"devDependencies": {
"@hazmi35/eslint-config": "^9.0.0",
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.53.0",
"@typescript-eslint/parser": "^5.53.0",
"concurrently": "^8.0.1",
"eslint": "^8.34.0",
"husky": "^8.0.3",
"rimraf": "^4.4.1",
"typescript": "^5.0.3"
},
"dependencies": {
"@frutbits/pino-logger": "^3.3.0",
"@napi-rs/canvas": "^0.1.39",
"@sapphire/decorators": "^6.0.0",
"@sapphire/framework": "^4.2.2",
"@sapphire/plugin-editable-commands": "^3.0.0",
"@sapphire/plugin-hmr": "^2.0.0",
"@sapphire/result": "^2.6.0",
"@sapphire/utilities": "^3.11.0",
"canvas-constructor": "^7.0.0",
"discord.js": "^14.7.1",
"dotenv": "^16.0.3",
"got": "^12.6.0",
"moment": "^2.29.4",
"pino-pretty": "^10.0.0",
"pretty-ms": "^8.0.0",
"tslib": "^2.5.0"
}
}