generated from replugged-org/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.39 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
{
"name": "stuff",
"version": "1.0.0",
"description": "Stuff",
"engines": {
"node": ">=20.0.0",
"pnpm": ">=9.0.0"
},
"scripts": {
"build:plugin": "replugged build plugin",
"watch:plugin": "replugged build plugin --watch",
"bundle:plugin": "replugged bundle plugin",
"build:theme": "replugged build theme",
"watch:theme": "replugged build theme --watch",
"bundle:theme": "replugged bundle theme",
"release": "replugged release",
"check": "tsc --noEmit",
"prettier:check": "prettier ./plugins --check && prettier ./themes --check",
"eslint:check": "eslint ./plugins",
"prettier:fix": "prettier ./plugins --write && prettier ./themes --write",
"eslint:fix": "eslint ./plugins --fix",
"lint": "pnpm run prettier:check && pnpm run eslint:check && pnpm run check",
"lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix"
},
"keywords": [],
"author": "",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.14.8",
"@types/react": "^18.2.79",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"discord-types": "^1.3.3",
"eslint": "^8.57.0",
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.34.3",
"prettier": "^3.3.2",
"replugged": "^4.8.1",
"typescript": "^5.4.5"
}
}