-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
93 lines (93 loc) · 2.53 KB
/
package.json
File metadata and controls
93 lines (93 loc) · 2.53 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
{
"name": "@animeworldid/matsuri",
"private": "true",
"version": "1.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/animeworldid/matsuri.git"
},
"keywords": [
"js",
"typescript"
],
"author": "Anime World Indonesia <dev@animeworld.moe>",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/animeworldid/matsuri/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": "^10.0.0",
"@types/amqplib": "^0.10.1",
"@types/node": "^18.16.18",
"@typescript-eslint/eslint-plugin": "^5.60.0",
"@typescript-eslint/parser": "^5.60.0",
"concurrently": "^8.2.0",
"eslint": "^8.43.0",
"husky": "^8.0.3",
"rimraf": "^5.0.1",
"typescript": "^5.1.3"
},
"dependencies": {
"@frutbits/pino-logger": "^3.3.0",
"@napi-rs/canvas": "^0.1.41",
"@sapphire/decorators": "^6.0.1",
"@sapphire/framework": "^4.4.4",
"@sapphire/plugin-editable-commands": "^3.0.2",
"@sapphire/plugin-hmr": "^2.0.1",
"@sapphire/result": "^2.6.4",
"@sapphire/utilities": "^3.12.0",
"amqplib": "^0.10.3",
"canvas-constructor": "^7.0.1",
"discord.js": "^14.11.0",
"dotenv": "^16.3.1",
"got": "^13.0.0",
"moment": "^2.29.4",
"pino-pretty": "^10.0.0",
"pretty-ms": "^8.0.0",
"tslib": "^2.5.3"
}
}