MMM/package.json

38 lines
1.1 KiB
JSON
Raw Normal View History

2022-10-19 00:28:08 -05:00
{
2023-05-06 08:10:49 -05:00
"name": "mmm",
2022-10-19 00:28:08 -05:00
"version": "1.0.0",
2023-05-06 08:10:49 -05:00
"description": "Mediocre Macro Manager",
2022-12-10 20:22:04 -06:00
"engines": {
2023-03-31 05:33:11 -05:00
"node": ">=18.0.0",
"pnpm": ">=8.0.0"
2022-12-10 20:22:04 -06:00
},
2022-10-19 00:28:08 -05:00
"scripts": {
2023-01-28 22:55:22 -06:00
"build": "replugged build plugin",
"watch": "replugged build plugin --watch",
2023-02-02 17:50:06 -06:00
"bundle": "replugged bundle plugin",
2022-12-13 19:31:40 -06:00
"check": "tsc --noEmit",
2023-01-28 22:57:01 -06:00
"prettier:check": "prettier ./src --check",
"eslint:check": "eslint ./src",
"prettier:fix": "prettier ./src --write",
"eslint:fix": "eslint ./src --fix",
2022-12-10 20:22:04 -06:00
"lint": "pnpm run prettier:check && pnpm run eslint:check && pnpm run check",
"lint:fix": "pnpm run prettier:fix && pnpm run eslint:fix"
2022-10-19 00:28:08 -05:00
},
"keywords": [],
"author": "",
2023-05-07 06:47:21 -05:00
"license": "GPL-3.0-or-later",
2022-10-19 00:28:08 -05:00
"devDependencies": {
"@types/node": "^18.16.16",
"@types/react": "^18.2.8",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"eslint": "^8.42.0",
2022-12-10 20:22:04 -06:00
"eslint-config-dmitmel": "github:dmitmel/eslint-config-dmitmel",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-react": "^7.32.2",
2023-05-06 08:10:49 -05:00
"prettier": "^2.8.8",
"replugged": "^4.3.0",
"typescript": "^5.1.3"
2022-10-19 00:28:08 -05:00
}
}