mythik-cli 0.1.0 → 0.1.1

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.
Files changed (3) hide show
  1. package/README.md +1 -1
  2. package/dist/cli.js +1 -1
  3. package/package.json +66 -65
package/README.md CHANGED
@@ -68,4 +68,4 @@ Apache-2.0.
68
68
 
69
69
  ## Status
70
70
 
71
- v0.1.0 public release. The binary name is `mythik`; the npm package name is `mythik-cli`.
71
+ v0.1.1 public release. The binary name is `mythik`; the npm package name is `mythik-cli`.
package/dist/cli.js CHANGED
@@ -26,7 +26,7 @@ const program = new Command();
26
26
  program
27
27
  .name('mythik')
28
28
  .description('Mythik CLI — manage specs via SpecEngine')
29
- .version('0.1.0');
29
+ .version('0.1.1');
30
30
  program
31
31
  .command('manifest <screen>')
32
32
  .description('Show structural tree of a screen spec')
package/package.json CHANGED
@@ -1,65 +1,66 @@
1
- {
2
- "name": "mythik-cli",
3
- "version": "0.1.0",
4
- "description": "Command-line and programmatic tooling for validating, linting, pushing, patching, and versioning Mythik specs.",
5
- "license": "Apache-2.0",
6
- "type": "module",
7
- "bin": {
8
- "mythik": "dist/cli.js"
9
- },
10
- "main": "dist/cli.js",
11
- "keywords": [
12
- "mythik",
13
- "cli",
14
- "json",
15
- "spec-driven",
16
- "validation",
17
- "lint",
18
- "ai"
19
- ],
20
- "homepage": "https://mythik.dev",
21
- "bugs": {
22
- "url": "https://github.com/mldixdev/mythik/issues"
23
- },
24
- "repository": {
25
- "type": "git",
26
- "url": "git+https://github.com/mldixdev/mythik.git",
27
- "directory": "packages/cli"
28
- },
29
- "files": [
30
- "dist",
31
- "LICENSE",
32
- "NOTICE"
33
- ],
34
- "exports": {
35
- ".": {
36
- "types": "./dist/cli.d.ts",
37
- "default": "./dist/cli.js"
38
- },
39
- "./api": {
40
- "types": "./dist/api.d.ts",
41
- "default": "./dist/api.js"
42
- },
43
- "./package.json": "./package.json"
44
- },
45
- "scripts": {
46
- "build": "node ../../node_modules/typescript/bin/tsc",
47
- "typecheck": "node ../../node_modules/typescript/bin/tsc --noEmit",
48
- "prepack": "pnpm build"
49
- },
50
- "dependencies": {
51
- "@inquirer/prompts": "^7.0.0",
52
- "mythik": "workspace:*",
53
- "@toon-format/toon": "^2.1.0",
54
- "commander": "^13.0.0"
55
- },
56
- "devDependencies": {
57
- "@types/node": "^25.5.2"
58
- },
59
- "peerDependencies": {
60
- "typescript": ">=5.0.0"
61
- },
62
- "peerDependenciesMeta": {
63
- "typescript": { "optional": true }
64
- }
65
- }
1
+ {
2
+ "name": "mythik-cli",
3
+ "version": "0.1.1",
4
+ "description": "Command-line and programmatic tooling for validating, linting, pushing, patching, and versioning Mythik specs.",
5
+ "license": "Apache-2.0",
6
+ "type": "module",
7
+ "bin": {
8
+ "mythik": "dist/cli.js"
9
+ },
10
+ "main": "dist/cli.js",
11
+ "keywords": [
12
+ "mythik",
13
+ "cli",
14
+ "json",
15
+ "spec-driven",
16
+ "validation",
17
+ "lint",
18
+ "ai"
19
+ ],
20
+ "homepage": "https://mythik.dev",
21
+ "bugs": {
22
+ "url": "https://github.com/mldixdev/mythik/issues"
23
+ },
24
+ "repository": {
25
+ "type": "git",
26
+ "url": "git+https://github.com/mldixdev/mythik.git",
27
+ "directory": "packages/cli"
28
+ },
29
+ "files": [
30
+ "dist",
31
+ "LICENSE",
32
+ "NOTICE"
33
+ ],
34
+ "exports": {
35
+ ".": {
36
+ "types": "./dist/cli.d.ts",
37
+ "default": "./dist/cli.js"
38
+ },
39
+ "./api": {
40
+ "types": "./dist/api.d.ts",
41
+ "default": "./dist/api.js"
42
+ },
43
+ "./package.json": "./package.json"
44
+ },
45
+ "dependencies": {
46
+ "@inquirer/prompts": "^7.0.0",
47
+ "@toon-format/toon": "^2.1.0",
48
+ "commander": "^13.0.0",
49
+ "mythik": "0.1.1"
50
+ },
51
+ "devDependencies": {
52
+ "@types/node": "^25.5.2"
53
+ },
54
+ "peerDependencies": {
55
+ "typescript": ">=5.0.0"
56
+ },
57
+ "peerDependenciesMeta": {
58
+ "typescript": {
59
+ "optional": true
60
+ }
61
+ },
62
+ "scripts": {
63
+ "build": "node ../../node_modules/typescript/bin/tsc",
64
+ "typecheck": "node ../../node_modules/typescript/bin/tsc --noEmit"
65
+ }
66
+ }