generated from KagChi/typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.46 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.46 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
{
"name": "@nezuchan/decorators",
"version": "0.3.0",
"description": "A package that contains shared decorators",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint src --ext ts",
"lint:fix": "eslint src --fix --ext ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/NezuChan/library"
},
"homepage": "https://nezu.my.id",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"author": "KagChi",
"license": "GPL-3.0",
"devDependencies": {
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.0",
"rimraf": "^6.1.3",
"typescript": "^5.5.4"
},
"eslintConfig": {
"parserOptions": {
"project": "./tsconfig.eslint.json"
},
"extends": "@hazmi35/eslint-config/typescript",
"ignorePatterns": [
"dist/*"
],
"rules": {
"@typescript-eslint/no-extraneous-class": "off",
"@typescript-eslint/naming-convention": "off"
}
},
"files": [
"dist/**/*.js*",
"dist/**/*.mjs*",
"dist/**/*.d*"
],
"dependencies": {
"@sapphire/pieces": "^4.3.1",
"@sapphire/utilities": "^3.17.0"
}
}