generated from replugged-org/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
43 lines (43 loc) · 1.44 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
{
"name": "replugged-plugins",
"version": "0.0.0",
"description": "All the Replugged plugins I have made.",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build": "replugged build plugin",
"build-scripts": "tsc esbuild.extra.mts --module NodeNext",
"watch": "replugged build plugin --watch",
"bundle": "pnpm run build-scripts && replugged bundle plugin",
"release": "replugged release",
"check": "tsc --noEmit",
"prettier:check": "prettier ./common ./plugins --check",
"eslint:check": "eslint ./common ./plugins",
"prettier:fix": "prettier ./common ./plugins --write",
"eslint:fix": "eslint ./common ./plugins --fix",
"lint": "pnpm run prettier:check && pnpm run eslint:check && pnpm run check",
"lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix"
},
"author": "FedeIlLeone",
"license": "MIT",
"devDependencies": {
"@discord/intl": "^0.13.2",
"@discord/intl-loader-core": "^0.13.2",
"@types/node": "^20.17.7",
"@types/react": "^18.3.12",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"@typescript-eslint/parser": "^7.18.0",
"chalk": "^5.3.0",
"classnames": "^2.5.1",
"discord-types": "^1.3.3",
"esbuild": "^0.24.0",
"eslint": "^8.57.1",
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"prettier": "^3.3.3",
"replugged": "^4.8.3",
"typescript": "^5.4.5"
}
}