@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.
- package/dist/bin.js +26 -15
- 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
|
-
//
|
|
107389
|
+
// package.json
|
|
107390
107390
|
var package_default = {
|
|
107391
|
-
name: "@mikan
|
|
107392
|
-
version: "0.0.
|
|
107393
|
-
private:
|
|
107391
|
+
name: "@takemo101/mikan",
|
|
107392
|
+
version: "0.0.6",
|
|
107393
|
+
private: false,
|
|
107394
107394
|
type: "module",
|
|
107395
|
-
|
|
107396
|
-
|
|
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
|
|