| Crates.io | kotoba-package-manager |
| lib.rs | kotoba-package-manager |
| version | 0.1.16 |
| created_at | 2025-09-17 15:09:29.288269+00 |
| updated_at | 2025-09-17 15:09:29.288269+00 |
| description | Kotoba Package Manager - Dependency management and package distribution |
| homepage | |
| repository | https://github.com/jun784/kotoba |
| max_upload_size | |
| id | 1843460 |
| size | 106,936 |
Jisho is the official package manager for the Kotoba ecosystem. It is designed to be a secure, efficient, and modern package manager, inspired by Deno, NPM, and Cargo.
~/.kotoba/cache), deduplicated across projects, saving disk space and speeding up installations.kotoba.lock file is generated to ensure deterministic and reproducible builds by pinning the exact versions and CIDs of all dependencies.To manage dependencies for your Kotoba project, create a kotoba.toml file:
[package]
name = "my-kotoba-project"
version = "0.1.0"
[dependencies]
react = { version = "18.2.0", source = "npm" }
lodash = { version = "4.17.21", source = "npm" }
Then, run the install command:
kotoba install
This will resolve all dependencies, download them, store them in the global cache, create a node_modules directory with the package contents, and generate a kotoba.lock file.