@takemo101/mikan 0.0.5 → 0.0.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/dist/bin.js +26 -15
  2. package/package.json +1 -1
package/dist/bin.js CHANGED
@@ -107386,27 +107386,38 @@ function coreError(code, message) {
107386
107386
 
107387
107387
  // ../tui/src/index.ts
107388
107388
  var import_react20 = __toESM(require_react(), 1);
107389
- // ../tui/package.json
107389
+ // package.json
107390
107390
  var package_default = {
107391
- name: "@mikan/tui",
107392
- version: "0.0.3",
107393
- private: true,
107391
+ name: "@takemo101/mikan",
107392
+ version: "0.0.6",
107393
+ private: false,
107394
107394
  type: "module",
107395
- exports: {
107396
- ".": "./src/index.ts"
107395
+ bin: {
107396
+ mikan: "dist/bin.js"
107397
+ },
107398
+ repository: {
107399
+ type: "git",
107400
+ url: "https://github.com/takemo101/mikan"
107401
+ },
107402
+ files: [
107403
+ "dist"
107404
+ ],
107405
+ publishConfig: {
107406
+ access: "public"
107407
+ },
107408
+ optionalDependencies: {
107409
+ "@opentui/core-darwin-arm64": "0.3.0",
107410
+ "@opentui/core-darwin-x64": "0.3.0",
107411
+ "@opentui/core-linux-arm64": "0.3.0",
107412
+ "@opentui/core-linux-x64": "0.3.0",
107413
+ "@opentui/core-win32-arm64": "0.3.0",
107414
+ "@opentui/core-win32-x64": "0.3.0"
107397
107415
  },
107398
107416
  scripts: {
107399
- build: "tsc -p ../../tsconfig.json --noEmit",
107417
+ build: "bun run build:dist && tsc -p ../../tsconfig.json --noEmit",
107418
+ "build:dist": "bun build ./src/bin.ts --target=bun --outdir=./dist --entry-naming=bin.js",
107400
107419
  typecheck: "tsc -p ../../tsconfig.json --noEmit",
107401
107420
  test: "bun test"
107402
- },
107403
- dependencies: {
107404
- "@mikan/core": "workspace:*",
107405
- "@mikan/github": "workspace:*",
107406
- "@mikan/project-config": "workspace:*",
107407
- "@opentui/core": "latest",
107408
- "@opentui/react": "latest",
107409
- react: "latest"
107410
107421
  }
107411
107422
  };
107412
107423
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@takemo101/mikan",
3
- "version": "0.0.5",
3
+ "version": "0.0.6",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "bin": {