kumiki 0.1.0

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 ADDED
@@ -0,0 +1,35 @@
1
+ # kumiki
2
+
3
+ The convenient entry point for **Kumiki**, an AI-first web framework language. This package provides the `kumiki` command and simply wraps [`@kumikijs/cli`](https://www.npmjs.com/package/@kumikijs/cli).
4
+
5
+ ## Install
6
+
7
+ ```sh
8
+ npm i -g kumiki
9
+ # or run without installing
10
+ npx kumiki --help
11
+ ```
12
+
13
+ ## Usage
14
+
15
+ ```sh
16
+ kumiki build <input.kumiki> <outdir> # compile to a runnable app
17
+ kumiki check <input.kumiki> # type-check and report diagnostics
18
+ ```
19
+
20
+ Run `kumiki` with no arguments to see the full command list.
21
+
22
+ ## Library use
23
+
24
+ For programmatic use, install the scoped packages directly:
25
+
26
+ - [`@kumikijs/compiler`](https://www.npmjs.com/package/@kumikijs/compiler) — lexer, parser, typechecker, codegen
27
+ - [`@kumikijs/runtime`](https://www.npmjs.com/package/@kumikijs/runtime) — DOM runtime
28
+ - [`@kumikijs/cli`](https://www.npmjs.com/package/@kumikijs/cli) — the CLI as a library
29
+ - [`@kumikijs/mcp`](https://www.npmjs.com/package/@kumikijs/mcp) — MCP server
30
+
31
+ See <https://github.com/kage1020/Kumiki>.
32
+
33
+ ## License
34
+
35
+ Apache-2.0
package/dist/kumiki.js ADDED
@@ -0,0 +1,3 @@
1
+ #!/usr/bin/env node
2
+ import "@kumikijs/cli/kumiki";
3
+ export {};
package/package.json ADDED
@@ -0,0 +1,46 @@
1
+ {
2
+ "name": "kumiki",
3
+ "version": "0.1.0",
4
+ "type": "module",
5
+ "description": "Kumiki — the convenient `kumiki` CLI entry for the AI-first web framework language. Wraps @kumikijs/cli.",
6
+ "license": "Apache-2.0",
7
+ "author": "kage1020",
8
+ "homepage": "https://github.com/kage1020/Kumiki#readme",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "git+https://github.com/kage1020/Kumiki.git",
12
+ "directory": "packages/kumiki"
13
+ },
14
+ "bugs": "https://github.com/kage1020/Kumiki/issues",
15
+ "keywords": [
16
+ "kumiki",
17
+ "ai-first",
18
+ "cli",
19
+ "compiler",
20
+ "codegen"
21
+ ],
22
+ "engines": {
23
+ "node": ">=20"
24
+ },
25
+ "bin": {
26
+ "kumiki": "./dist/kumiki.js"
27
+ },
28
+ "files": [
29
+ "dist"
30
+ ],
31
+ "publishConfig": {
32
+ "access": "public"
33
+ },
34
+ "scripts": {
35
+ "build": "tsdown",
36
+ "lint": "biome check src",
37
+ "kumiki": "tsx src/kumiki.ts"
38
+ },
39
+ "dependencies": {
40
+ "@kumikijs/cli": "workspace:*"
41
+ },
42
+ "devDependencies": {
43
+ "tsx": "catalog:",
44
+ "typescript": "catalog:"
45
+ }
46
+ }