@apicircle/cli 1.0.2 → 1.0.3

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.js +0 -0
  2. package/package.json +27 -34
package/dist/index.js CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@apicircle/cli",
3
- "version": "1.0.2",
3
+ "version": "1.0.3",
4
4
  "private": false,
5
5
  "type": "module",
6
6
  "description": "Command-line interface for API Circle Studio. Run mock servers, drive the MCP server, and import OpenAPI / Postman / Insomnia collections from any terminal.",
@@ -15,52 +15,45 @@
15
15
  "engines": {
16
16
  "node": ">=20"
17
17
  },
18
- "main": "./src/index.ts",
19
- "types": "./src/index.ts",
18
+ "main": "./dist/index.cjs",
19
+ "types": "./dist/index.d.cts",
20
20
  "bin": {
21
21
  "apicircle": "./dist/index.cjs"
22
22
  },
23
23
  "exports": {
24
- ".": "./src/index.ts"
24
+ ".": {
25
+ "import": {
26
+ "types": "./dist/index.d.ts",
27
+ "default": "./dist/index.js"
28
+ },
29
+ "require": {
30
+ "types": "./dist/index.d.cts",
31
+ "default": "./dist/index.cjs"
32
+ }
33
+ }
25
34
  },
26
35
  "files": [
27
36
  "dist"
28
37
  ],
29
- "publishConfig": {
30
- "main": "./dist/index.cjs",
31
- "module": "./dist/index.js",
32
- "types": "./dist/index.d.cts",
33
- "exports": {
34
- ".": {
35
- "import": {
36
- "types": "./dist/index.d.ts",
37
- "default": "./dist/index.js"
38
- },
39
- "require": {
40
- "types": "./dist/index.d.cts",
41
- "default": "./dist/index.cjs"
42
- }
43
- }
44
- }
45
- },
46
- "scripts": {
47
- "build": "tsup",
48
- "check": "tsc --noEmit",
49
- "test": "vitest run",
50
- "clean": "rm -rf dist node_modules"
51
- },
52
38
  "dependencies": {
53
- "@apicircle/core": "workspace:*",
54
- "@apicircle/mcp-server": "workspace:*",
55
- "@apicircle/mock-server-core": "workspace:*",
56
- "@apicircle/shared": "workspace:*",
57
39
  "commander": "^12.0.0",
58
- "kleur": "^4.1.5"
40
+ "kleur": "^4.1.5",
41
+ "@apicircle/mock-server-core": "1.0.3",
42
+ "@apicircle/shared": "1.0.3",
43
+ "@apicircle/core": "1.0.3",
44
+ "@apicircle/mcp-server": "1.0.3"
59
45
  },
60
46
  "devDependencies": {
61
47
  "@types/node": "^20.0.0",
62
48
  "tsup": "^8.3.0",
63
49
  "typescript": "^5.4.0",
64
50
  "vitest": "^2.0.0"
65
- }
66
- }
51
+ },
52
+ "scripts": {
53
+ "build": "tsup",
54
+ "check": "tsc --noEmit",
55
+ "test": "vitest run",
56
+ "clean": "rm -rf dist node_modules"
57
+ },
58
+ "module": "./dist/index.js"
59
+ }