chore: move deps to root and some miscellaneous changes (#8129)

This commit is contained in:
Parbez
2022-06-21 18:45:38 +05:30
committed by GitHub
parent c6f285b7b0
commit 65d1879c0a
18 changed files with 388 additions and 385 deletions

View File

@@ -4,9 +4,9 @@
"description": "Lightweight HTTP proxy for Discord's API, brought to you as a container 📦",
"scripts": {
"build": "tsup",
"lint": "prettier --check . && eslint src --ext mjs,js,ts",
"format": "prettier --write . && eslint src --ext mjs,js,ts --fix",
"prepublishOnly": "yarn build && yarn lint && yarn test",
"lint": "prettier --cache --check . && eslint src --ext mjs,js,ts --cache",
"format": "prettier --cache --write . && eslint src --ext mjs,js,ts --fix --cache",
"prepack": "yarn build && yarn lint",
"changelog": "git cliff --prepend ./CHANGELOG.md -u -c ./cliff.toml -r ../../ --include-path 'packages/proxy-container/*'"
},
"main": "./dist/index.js",
@@ -47,22 +47,17 @@
"@discordjs/rest": "^0.5.0",
"tslib": "^2.4.0"
},
"devDependencies": {
"@types/node": "^16.11.41",
"@typescript-eslint/eslint-plugin": "^5.28.0",
"@typescript-eslint/parser": "^5.28.0",
"eslint": "^8.18.0",
"eslint-config-marine": "^9.4.1",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.26.0",
"prettier": "^2.7.1",
"tsup": "^6.1.2",
"typescript": "^4.7.4"
},
"engines": {
"node": ">=16.9.0"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@types/node": "^18.0.0",
"eslint": "^8.18.0",
"prettier": "^2.7.1",
"tsup": "^6.1.2",
"typescript": "^4.7.4"
}
}