generated from NezuChan/template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
65 lines (65 loc) · 1.72 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
{
"name": "@nezuchan/locales",
"version": "3.1.0",
"description": "A Public Locales Translation Repository for NezukoChan.",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --fix --ext ts",
"build": "swc src -d dist && tsc --emitDeclarationOnly"
},
"type": "module",
"author": "KagChi",
"license": "GPL-3.0",
"devDependencies": {
"@discordjs/builders": "^1.7.0",
"@hazmi35/eslint-config": "^11.0.0",
"@nezuchan/core": "^0.8.1",
"@nezuchan/decorators": "^0.2.0",
"@swc/cli": "^0.1.63",
"@swc/core": "^1.3.104",
"@types/amqplib": "^0.10.4",
"@types/common-tags": "^1.8.4",
"@types/node": "^20.11.5",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"rimraf": "^5.0.5",
"typescript": "^5.5.4"
},
"eslintConfig": {
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"parserOptions": {
"project": "./tsconfig.json"
},
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"@hazmi35/eslint-config/typescript"
],
"rules": {
"class-methods-use-this": "off",
"@typescript-eslint/naming-convention": "off"
}
},
"dependencies": {
"@nezuchan/constants": "^0.8.0",
"@nezuchan/framework": "^0.8.1",
"@nezuchan/i18n": "^3.0.0",
"@sapphire/pieces": "^4.3.1",
"common-tags": "^1.8.2",
"tslib": "^2.6.2"
}
}