generated from replugged-org/plugin-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
32 lines (32 loc) · 968 Bytes
/
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
{
"engines": {
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
},
"license": "ISC",
"scripts": {
"build": "replugged build plugin",
"watch": "replugged build plugin --watch",
"bundle": "replugged bundle plugin",
"check": "tsc --noEmit",
"prettier:check": "prettier ./src --check",
"eslint:check": "eslint ./src",
"prettier:fix": "prettier ./src --write",
"eslint:fix": "eslint ./src --fix",
"lint": "pnpm run prettier:check && pnpm run eslint:check && pnpm run check",
"lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix"
},
"devDependencies": {
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"discord-api-types": "^0.37.37",
"eslint": "^8.37.0",
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.7",
"replugged": "^4.2.3",
"typescript": "^5.0.3"
}
}