chore(packages/shared): update dependencies

This commit is contained in:
PalmDevs
2024-01-14 21:52:30 +07:00
parent ee5ffa6f24
commit 85fe5dd1ff
2 changed files with 51 additions and 51 deletions

View File

@@ -1,40 +1,40 @@
{ {
"name": "@revanced/bot-shared", "name": "@revanced/bot-shared",
"type": "module", "type": "module",
"version": "0.1.0", "version": "0.1.0",
"description": "🙌🏻 Shared components for bots assisting ReVanced", "description": "🙌🏻 Shared components for bots assisting ReVanced",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
"scripts": { "scripts": {
"build": "bun bundle && bun types", "build": "bun bundle && bun types",
"watch": "conc --raw \"bun bundle:watch\" \"bun types:watch\"", "watch": "conc --raw \"bun bundle:watch\" \"bun types:watch\"",
"bundle": "bun build src/index.ts --outdir=dist --sourcemap=external --target=node --minify", "bundle": "bun build src/index.ts --outdir=dist --sourcemap=external --target=node --minify",
"bundle:watch": "bun run bundle --watch", "bundle:watch": "bun run bundle --watch",
"types": "tsc --declaration --emitDeclarationOnly", "types": "tsc --declaration --emitDeclarationOnly",
"types:watch": "bun types --watch --preserveWatchOutput", "types:watch": "bun types --watch --preserveWatchOutput",
"types:clean": "bun types --build --clean" "types:clean": "bun types --build --clean"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/revanced/revanced-helper.git", "url": "git+https://github.com/revanced/revanced-helper.git",
"directory": "packages/shared" "directory": "packages/shared"
}, },
"author": "Palm <palmpasuthorn@gmail.com> (https://github.com/PalmDevs)", "author": "Palm <palmpasuthorn@gmail.com> (https://github.com/PalmDevs)",
"contributors": [ "contributors": [
"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)"
], ],
"license": "GPL-3.0-or-later", "license": "GPL-3.0-or-later",
"bugs": { "bugs": {
"url": "https://github.com/revanced/revanced-helper/issues" "url": "https://github.com/revanced/revanced-helper/issues"
}, },
"homepage": "https://github.com/revanced/revanced-helper#readme", "homepage": "https://github.com/revanced/revanced-helper#readme",
"dependencies": { "dependencies": {
"bson": "^6.2.0", "bson": "^6.2.0",
"chalk": "^5.3.0", "chalk": "^5.3.0",
"supports-color": "^9.4.0", "supports-color": "^9.4.0",
"tracer": "^1.3.0", "tracer": "^1.3.0",
"valibot": "^0.21.0", "valibot": "^0.21.0",
"zod": "^3.22.4" "zod": "^3.22.4"
} }
} }

View File

@@ -1,11 +1,11 @@
{ {
"extends": "../../tsconfig.packages.json", "extends": "../../tsconfig.packages.json",
"compilerOptions": { "compilerOptions": {
"baseUrl": ".", "baseUrl": ".",
"rootDir": "./src", "rootDir": "./src",
"outDir": "dist", "outDir": "dist",
"module": "ESNext", "module": "ESNext",
"composite": true "composite": true
}, },
"exclude": ["node_modules", "dist"] "exclude": ["node_modules", "dist"]
} }