@datamitsu/datamitsu-darwin-x64 0.0.0-unstable.20260412.633a430
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/README.md +61 -0
- package/datamitsu +0 -0
- package/package.json +18 -0
package/README.md
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
<!-- This file is intentionally minimal. Full documentation lives in website/docs/ -->
|
|
2
|
+
|
|
3
|
+
# datamitsu
|
|
4
|
+
|
|
5
|
+
<p align="center">
|
|
6
|
+
<img src="website/static/img/logo.png" alt="datamitsu" width="400" />
|
|
7
|
+
</p>
|
|
8
|
+
|
|
9
|
+
<p align="center">
|
|
10
|
+
<a href="https://github.com/datamitsu/datamitsu/actions/workflows/pr-checks.yml"><img src="https://github.com/datamitsu/datamitsu/actions/workflows/pr-checks.yml/badge.svg" alt="build"></a>
|
|
11
|
+
<a href="https://goreportcard.com/report/github.com/datamitsu/datamitsu"><img src="https://goreportcard.com/badge/github.com/datamitsu/datamitsu?v=2" alt="Go Report Card"></a>
|
|
12
|
+
<img src="https://img.shields.io/badge/License-MIT-yellow.svg" alt="License: MIT">
|
|
13
|
+
</p>
|
|
14
|
+
|
|
15
|
+
> Your toolchain deserves a home.
|
|
16
|
+
|
|
17
|
+
> **Alpha**: This project is in alpha. The configuration API is not yet stabilized and may change between versions.
|
|
18
|
+
|
|
19
|
+
Every stack comes with a configuration tax. You pay it on the first project, then the second, then every time a tool updates—and it breaks differently in each repo. **datamitsu exists so you pay this tax only once.**
|
|
20
|
+
|
|
21
|
+
A platform for building reproducible, security-first development tool distributions. It downloads, verifies (SHA-256), and manages binaries and runtime-managed tools across platforms, using JavaScript-powered configuration with inheritance and chaining. Install one package, get everything configured.
|
|
22
|
+
|
|
23
|
+
## Quick Start
|
|
24
|
+
|
|
25
|
+
```bash
|
|
26
|
+
# Build from source
|
|
27
|
+
go build
|
|
28
|
+
|
|
29
|
+
# Initialize tools
|
|
30
|
+
./datamitsu init
|
|
31
|
+
|
|
32
|
+
# Run checks
|
|
33
|
+
./datamitsu check
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Documentation
|
|
37
|
+
|
|
38
|
+
Full documentation is available at [https://datamitsu.com](https://datamitsu.com) or locally in [`website/docs/`](website/docs/).
|
|
39
|
+
|
|
40
|
+
**Getting Started:**
|
|
41
|
+
|
|
42
|
+
- [Installation](website/docs/getting-started/installation.md)
|
|
43
|
+
- [Quick Start Guide](website/docs/getting-started/quick-start.md)
|
|
44
|
+
- [About datamitsu](website/docs/about.md) — Why datamitsu exists and what makes it unique
|
|
45
|
+
|
|
46
|
+
**Reference:**
|
|
47
|
+
|
|
48
|
+
- [CLI Commands](website/docs/reference/cli-commands.md)
|
|
49
|
+
- [Configuration API](website/docs/reference/configuration-api.md)
|
|
50
|
+
- [Comparison with mise/moon/Nx](website/docs/reference/comparison.md)
|
|
51
|
+
|
|
52
|
+
## Contributing
|
|
53
|
+
|
|
54
|
+
Contributions are welcome! See the [Contributing Guide](website/docs/contributing/index.md) to get started.
|
|
55
|
+
|
|
56
|
+
- [Brand Guidelines](website/docs/contributing/brand-guidelines.md) — Voice, tone, and style
|
|
57
|
+
- [Creating Wrapper Packages](website/docs/contributing/creating-wrappers.md) — Build config distributions
|
|
58
|
+
|
|
59
|
+
## License
|
|
60
|
+
|
|
61
|
+
MIT
|
package/datamitsu
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@datamitsu/datamitsu-darwin-x64",
|
|
3
|
+
"version": "0.0.0-unstable.20260412.633a430",
|
|
4
|
+
"description": "The macOS x64 binary for datamitsu, configuration management and binary distribution tool",
|
|
5
|
+
"repository": {
|
|
6
|
+
"type": "git",
|
|
7
|
+
"url": "git+https://github.com/datamitsu/datamitsu.git"
|
|
8
|
+
},
|
|
9
|
+
"keywords": ["datamitsu", "config", "binary", "tools", "linter"],
|
|
10
|
+
"author": "Alexander Svinarev <shibanet0@gmail.com> (shibanet0.com)",
|
|
11
|
+
"license": "MIT",
|
|
12
|
+
"bugs": {
|
|
13
|
+
"url": "https://github.com/datamitsu/datamitsu/issues"
|
|
14
|
+
},
|
|
15
|
+
"homepage": "https://github.com/datamitsu/datamitsu#readme",
|
|
16
|
+
"os": ["darwin"],
|
|
17
|
+
"cpu": ["x64"]
|
|
18
|
+
}
|