Make the (very minimal) CLI official

This commit is contained in:
2025-10-12 17:14:37 -04:00
parent 35c73e2bb2
commit 08a5b9a576
6 changed files with 53 additions and 35 deletions
+7 -2
View File
@@ -15,15 +15,19 @@
"email": "jake@jarv.is",
"url": "https://jarv.is"
},
"publishConfig": {
"access": "public"
},
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": "./bin/cli.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js",
"import": "./dist/index.js",
"default": "./dist/index.js"
"types": "./dist/index.d.ts"
}
},
"files": [
@@ -32,6 +36,7 @@
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"cli": "node bin/cli.cjs",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:run": "vitest run",