mirror of
https://github.com/sern-handler/cli
synced 2026-06-06 01:16:53 +00:00
* chore: start publish work * chore: more debug... who overwrote! permalink: http://whatthecommit.com/2e6bbd4fd1a21e16039ce52216c3c0b4 * update node version requirement (#106) * update node version requirement * publish progress * progress on publish * style: pretty pretty * chore: some progress i guess? * more progress on publish command * chore: remove magicast * more progress on command data * fix: adding extra fields to json output * fix: stringify again * rest field cli * style: run prettier * chore: friday 5pm permalink: http://whatthecommit.com/502256b954264d50f29967e1fef8394b * prettier and more progress on publish * progress on publishing * config can be function and publishing seems to be working correctly * fix, made mistakes * fix guild command publishing * fix guild ids not publishing correctly * edit correctly * upgrade fire readiers * refactor and separate some stuff * ^ * add default_member_permissions * refator * refactors * publish functionality done * seems like attachment loading works correctly * extrapolate * code splitting and faster startup * fix up bugs * forgot to merge prompts/plugin * remove unneeded esbuild plugin for simple define * build auto generate typings * fix: template dir after switching commands to dynamic imports * update preprocessor * fix: add experimental warning to publish and build * fix vulnerability * oops, false alarm * better sern.build.js config support * chore: remove pnpm lock * cleaner build and also some cli options * fix regression * add more cli options * optimize * no any --------- Co-authored-by: EvolutionX <evolutionx9777@gmail.com>
64 lines
1.6 KiB
JSON
64 lines
1.6 KiB
JSON
{
|
|
"name": "@sern/cli",
|
|
"version": "0.6.0",
|
|
"description": "Official CLI for @sern/handler",
|
|
"exports": "./dist/index.js",
|
|
"bin": {
|
|
"sern": "./dist/index.js"
|
|
},
|
|
"type": "module",
|
|
"scripts": {
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
|
"format": "prettier --check .",
|
|
"fix": "prettier --write .",
|
|
"build": "tsup",
|
|
"watch": "tsup --watch"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/sern-handler/cli.git"
|
|
},
|
|
"keywords": [
|
|
"cli",
|
|
"discord",
|
|
"discord.js",
|
|
"sern",
|
|
"sern-handler"
|
|
],
|
|
"author": "EvolutionX",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/sern-handler/cli/issues"
|
|
},
|
|
"homepage": "https://sern.dev",
|
|
"dependencies": {
|
|
"@esbuild-kit/cjs-loader": "^2.4.2",
|
|
"@esbuild-kit/esm-loader": "^2.5.5",
|
|
"colorette": "2.0.20",
|
|
"commander": "11.0.0",
|
|
"dotenv": "^16.3.1",
|
|
"esbuild": "^0.19.1",
|
|
"execa": "7.1.1",
|
|
"find-up": "6.3.0",
|
|
"glob": "^10.3.3",
|
|
"ora": "6.3.1",
|
|
"prompts": "2.4.2",
|
|
"undici": "5.22.1"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/parser": "^7.22.5",
|
|
"@favware/npm-deprecate": "1.0.7",
|
|
"@types/prompts": "2.4.4",
|
|
"prettier": "2.8.8",
|
|
"tsup": "6.7.0",
|
|
"typescript": "5.1.3"
|
|
},
|
|
"engines": {
|
|
"node": ">= 18.16.x"
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/",
|
|
"access": "public"
|
|
}
|
|
}
|