chore: remove unused dev packages and scripts

This commit is contained in:
PalmDevs
2024-01-17 22:55:15 +07:00
parent 680f00722f
commit 4792fde5a3
2 changed files with 29 additions and 43 deletions

BIN
bun.lockb

Binary file not shown.

72
package.json Executable file → Normal file
View File

@@ -1,24 +1,25 @@
{ {
"name": "revanced-helper", "name": "revanced-helper",
"description": "🤖 Bots assisting ReVanced on multiple platforms",
"private": true,
"version": "0.0.0", "version": "0.0.0",
"license": "GPL-3.0-or-later",
"type": "module",
"author": "Palm <palmpasuthorn@gmail.com> (https://github.com/PalmDevs)", "author": "Palm <palmpasuthorn@gmail.com> (https://github.com/PalmDevs)",
"workspaces": ["apis/*", "bots/*", "packages/*"],
"scripts": {
"build": "turbo run build",
"watch": "turbo run watch",
"flint": "biome check --apply .",
"flint:check": "biome check .",
"clint": "commitlint --edit",
"prepare": "lefthook install"
},
"homepage": "https://github.com/revanced/revanced-helper#readme",
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/revanced/revanced-helper.git" "url": "git+https://github.com/revanced/revanced-helper.git"
}, },
"devDependencies": {
"@biomejs/biome": "1.5.1",
"@commitlint/cli": "^18.4.4",
"@commitlint/config-conventional": "^18.4.4",
"@tsconfig/strictest": "^2.0.2",
"conventional-changelog-conventionalcommits": "^7.0.2",
"lefthook": "^1.5.6",
"semantic-release": "^23.0.0",
"turbo": "^1.11.3",
"typescript": "^5.3.3",
"@revanced/bot-shared": "workspace:*",
"@revanced/bot-api": "workspace:*"
},
"bugs": { "bugs": {
"url": "https://github.com/revanced/revanced-helper/issues" "url": "https://github.com/revanced/revanced-helper/issues"
}, },
@@ -26,33 +27,18 @@
"Palm <palmpasuthorn@gmail.com> (https://github.com/PalmDevs)", "Palm <palmpasuthorn@gmail.com> (https://github.com/PalmDevs)",
"ReVanced <nosupport@revanced.app> (https://github.com/revanced)" "ReVanced <nosupport@revanced.app> (https://github.com/revanced)"
], ],
"description": "🤖 Bots assisting ReVanced on multiple platforms", "devDependencies": {
"homepage": "https://github.com/revanced/revanced-helper#readme", "@biomejs/biome": "^1.5.2",
"license": "GPL-3.0-or-later", "@commitlint/cli": "^18.4.4",
"overrides": { "@commitlint/config-conventional": "^18.4.4",
"uuid": ">=9.0.0", "@revanced/bot-api": "workspace:*",
"isomorphic-fetch": ">=3.0.0" "@revanced/bot-shared": "workspace:*",
}, "@tsconfig/strictest": "^2.0.2",
"private": true, "@types/bun": "latest",
"scripts": { "concurrently": "^8.2.2",
"build": "turbo run build", "conventional-changelog-conventionalcommits": "^7.0.2",
"watch": "turbo run watch", "lefthook": "^1.5.6",
"format": "biome check --apply .", "turbo": "^1.11.3",
"format:check": "biome check .", "typescript": "^5.0.0"
"lint": "eslint --ignore-path .gitignore --cache .", }
"lint:apply": "eslint --ignore-path .gitignore --fix .", }
"commitlint": "commitlint --edit",
"t": "turbo run",
"prepare": "lefthook install"
},
"trustedDependencies": [
"lefthook",
"biome",
"turbo"
],
"workspaces": [
"apis/*",
"bots/*",
"packages/*"
]
}