@kimesh/cli 0.2.11 → 0.2.12

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 (2) hide show
  1. package/dist/index.d.ts +3 -3
  2. package/package.json +11 -11
package/dist/index.d.ts CHANGED
@@ -33,7 +33,7 @@ declare const commands: {
33
33
  alias: string;
34
34
  description: string;
35
35
  };
36
- "exclude-layers": {
36
+ 'exclude-layers': {
37
37
  type: "string";
38
38
  alias: string;
39
39
  description: string;
@@ -166,7 +166,7 @@ declare const commands: {
166
166
  alias: string;
167
167
  description: string;
168
168
  };
169
- "exclude-layers": {
169
+ 'exclude-layers': {
170
170
  type: "string";
171
171
  alias: string;
172
172
  description: string;
@@ -296,7 +296,7 @@ declare const devArgs: {
296
296
  alias: string;
297
297
  description: string;
298
298
  };
299
- "exclude-layers": {
299
+ 'exclude-layers': {
300
300
  type: "string";
301
301
  alias: string;
302
302
  description: string;
package/package.json CHANGED
@@ -1,16 +1,22 @@
1
1
  {
2
2
  "name": "@kimesh/cli",
3
- "version": "0.2.11",
3
+ "version": "0.2.12",
4
4
  "description": "Kimesh Framework CLI",
5
- "type": "module",
6
5
  "repository": {
7
6
  "type": "git",
8
7
  "url": "https://github.com/kimeshjs/kimesh.git"
9
8
  },
10
9
  "bin": {
11
- "km": "./bin/km.mjs",
12
- "kimesh": "./bin/km.mjs"
10
+ "kimesh": "./bin/km.mjs",
11
+ "km": "./bin/km.mjs"
13
12
  },
13
+ "files": [
14
+ "dist",
15
+ "bin"
16
+ ],
17
+ "type": "module",
18
+ "main": "./dist/index.js",
19
+ "types": "./dist/index.d.ts",
14
20
  "exports": {
15
21
  ".": {
16
22
  "types": "./dist/index.d.ts",
@@ -25,19 +31,13 @@
25
31
  "import": "./dist/commands/init.js"
26
32
  }
27
33
  },
28
- "main": "./dist/index.js",
29
- "types": "./dist/index.d.ts",
30
- "files": [
31
- "dist",
32
- "bin"
33
- ],
34
34
  "scripts": {
35
35
  "build": "tsdown",
36
36
  "dev": "tsdown --watch",
37
37
  "typecheck": "tsc --noEmit"
38
38
  },
39
39
  "dependencies": {
40
- "@kimesh/kit": "0.2.11",
40
+ "@kimesh/kit": "0.2.12",
41
41
  "citty": "^0.1.6",
42
42
  "consola": "^3.4.2",
43
43
  "exsolve": "^1.0.8",