kozou 0.0.2 → 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/package.json CHANGED
@@ -1,29 +1,52 @@
1
1
  {
2
2
  "name": "kozou",
3
- "version": "0.0.2",
4
- "description": "PostgreSQL compiler. Generates admin UI, MCP context, TypeScript types, GraphQL endpoints, and docs from a single schema.",
5
- "keywords": [
6
- "postgresql",
7
- "postgres",
8
- "compiler",
9
- "schema",
10
- "code-generation",
11
- "mcp",
12
- "admin-ui",
13
- "typescript",
14
- "graphql"
15
- ],
3
+ "version": "0.1.0",
4
+ "description": "Kozou CLI: scaffolding, schema introspection, and MCP server entry points. See Kozou v0.1 design spec §9.",
5
+ "license": "Apache-2.0",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/kozou-dev/kozou.git",
9
+ "directory": "packages/kozou"
10
+ },
16
11
  "homepage": "https://kozou.org",
17
12
  "bugs": {
18
13
  "url": "https://github.com/kozou-dev/kozou/issues"
19
14
  },
20
- "repository": {
21
- "type": "git",
22
- "url": "git+https://github.com/kozou-dev/kozou.git"
15
+ "type": "module",
16
+ "main": "./dist/index.js",
17
+ "types": "./dist/index.d.ts",
18
+ "exports": {
19
+ ".": {
20
+ "import": "./dist/index.js",
21
+ "types": "./dist/index.d.ts"
22
+ },
23
+ "./package.json": "./package.json"
24
+ },
25
+ "bin": {
26
+ "kozou": "./dist/cli.js",
27
+ "create-kozou": "./dist/create-kozou.js"
23
28
  },
24
- "license": "MIT",
25
- "author": "Takashi Matsuyama",
26
29
  "files": [
27
- "README.md"
28
- ]
29
- }
30
+ "dist"
31
+ ],
32
+ "publishConfig": {
33
+ "access": "public",
34
+ "provenance": true
35
+ },
36
+ "dependencies": {
37
+ "commander": "^14.0.0",
38
+ "yaml": "^2.9.0",
39
+ "zod": "^3.23.0",
40
+ "@kozou/core": "0.1.0",
41
+ "@kozou/introspect": "0.1.0",
42
+ "@kozou/mcp": "0.1.0"
43
+ },
44
+ "devDependencies": {
45
+ "tsx": "^4.19.0"
46
+ },
47
+ "scripts": {
48
+ "typecheck": "tsc --noEmit",
49
+ "build": "tsc && node scripts/copy-templates.mjs",
50
+ "test": "vitest run --coverage"
51
+ }
52
+ }