generated from sapphiredev/sapphire-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
104 lines (104 loc) · 2.56 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
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "neko-plugins",
"author": "@kaname-png",
"license": "MIT",
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf \"packages/**/dist\" \"packages/**/.turbo\"",
"lint": "turbo run lint",
"format": "prettier --write \"packages/**/{src,tests,scripts}/**/*.{mjs,ts,js}\"",
"test": "turbo run test",
"build": "turbo run build",
"docs": "typedoc",
"typecheck": "turbo run typecheck",
"update": "yarn upgrade-interactive",
"check-update": "turbo run check-update"
},
"dependencies": {
"tslib": "^2.8.0"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@favware/npm-deprecate": "^1.0.7",
"@sapphire/eslint-config": "^5.0.5",
"@sapphire/framework": "^5.2.1",
"@sapphire/prettier-config": "^2.0.0",
"@sapphire/ts-config": "^5.0.1",
"@swc/core": "^1.7.40",
"@swc/jest": "^0.2.36",
"@types/jest": "^29.5.14",
"@types/node": "^20.17.1",
"@types/rimraf": "^4.0.5",
"@typescript-eslint/eslint-plugin": "^7.13.0",
"@typescript-eslint/parser": "^7.13.0",
"cz-conventional-changelog": "^3.3.0",
"discord.js": "^14.16.3",
"esbuild-plugin-file-path-extensions": "^2.1.3",
"esbuild-plugin-version-injector": "^1.2.1",
"eslint": "~8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"gen-esm-wrapper": "^1.1.3",
"husky": "^9.1.6",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"lint-staged": "^15.2.10",
"prettier": "^3.3.3",
"pretty-quick": "^4.0.0",
"rimraf": "^6.0.1",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"tsup": "^8.3.5",
"tsx": "^4.19.2",
"turbo": "^2.2.3",
"typedoc": "^0.25.13",
"typedoc-plugin-mdn-links": "^3.1.30",
"typescript": "^5.4.5",
"undici": "^6.20.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kaname-png/neko-plugins.git"
},
"engines": {
"node": ">=v14.0.0",
"npm": ">=7.0.0"
},
"keywords": [
"bot",
"typescript",
"ts",
"yarn",
"discord",
"sapphire",
"discordjs"
],
"bugs": {
"url": "https://github.com/kaname-png/neko-plugins/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"lint-staged": {
"*.{mjs,js,ts}": "eslint --fix --ext mjs,js,ts"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"access": "public"
},
"resolutions": {
"jest-environment-jsdom": "https://registry.yarnpkg.com/@favware/skip-dependency/-/skip-dependency-1.1.3.tgz"
},
"prettier": "@sapphire/prettier-config",
"packageManager": "[email protected]"
}