@testsmith/api-spector 0.3.0 → 0.3.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.
@@ -633,7 +633,7 @@ async function main() {
633
633
  if (envName && !env) {
634
634
  console.warn(color(`Warning: environment "${envName}" not found. Running without environment.`, C.yellow));
635
635
  }
636
- const version = `v${"0.3.0"}`;
636
+ const version = `v${"0.3.1"}`;
637
637
  console.log("");
638
638
  console.log(color(" API Test Runner" + (version ? ` ${version}` : ""), C.bold, C.white));
639
639
  console.log(color(` Workspace: ${wsPath}`, C.gray));
@@ -70978,7 +70978,7 @@ function App() {
70978
70978
  /* @__PURE__ */ jsxRuntimeExports.jsx("span", { style: { color: "#6aa3c8" }, children: "Spector" }),
70979
70979
  /* @__PURE__ */ jsxRuntimeExports.jsxs("span", { className: "ml-2 text-[10px] font-normal opacity-50", children: [
70980
70980
  "v",
70981
- "0.3.0"
70981
+ "0.3.1"
70982
70982
  ] }),
70983
70983
  /* @__PURE__ */ jsxRuntimeExports.jsx("span", { className: "mx-2 opacity-30", children: "·" }),
70984
70984
  /* @__PURE__ */ jsxRuntimeExports.jsx(
@@ -5,7 +5,7 @@
5
5
  <meta charset="UTF-8" />
6
6
  <meta name="viewport" content="width=device-width, initial-scale=1.0" />
7
7
  <title>API Spector</title>
8
- <script type="module" crossorigin src="./assets/index-v6nKE4G2.js"></script>
8
+ <script type="module" crossorigin src="./assets/index-DYoP9JFL.js"></script>
9
9
  <link rel="stylesheet" crossorigin href="./assets/index-D4vegaiz.css">
10
10
  </head>
11
11
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@testsmith/api-spector",
3
3
  "productName": "API Spector",
4
- "version": "0.3.0",
4
+ "version": "0.3.1",
5
5
  "description": "Local-first API testing tool to inspect, test and mock APIs",
6
6
  "repository": {
7
7
  "type": "git",
@@ -24,6 +24,7 @@
24
24
  ],
25
25
  "scripts": {
26
26
  "dev": "electron-vite dev",
27
+ "dist": "npm run build && electron-builder",
27
28
  "build": "electron-vite build",
28
29
  "preview": "electron-vite preview",
29
30
  "package": "electron-builder",
@@ -57,6 +58,7 @@
57
58
  "@vitest/coverage-v8": "^3.2.4",
58
59
  "jsdom": "^25.0.1",
59
60
  "autoprefixer": "^10.4.27",
61
+ "electron": "~31.7.0",
60
62
  "electron-builder": "^26.8.1",
61
63
  "electron-vite": "^5.0.0",
62
64
  "eslint": "^9.39.4",
@@ -79,7 +81,6 @@
79
81
  "ajv": "^8.18.0",
80
82
  "cm6-graphql": "^0.2.1",
81
83
  "dayjs": "^1.11.20",
82
- "electron": "~31.7.0",
83
84
  "graphql": "^16.13.2",
84
85
  "immer": "^11.1.4",
85
86
  "js-yaml": "^4.1.1",
@@ -120,5 +121,21 @@
120
121
  "provider": "github",
121
122
  "releaseType": "draft"
122
123
  }
124
+ },
125
+ "mac": {
126
+ "category": "public.app-category.developer-tools",
127
+ "target": [
128
+ {
129
+ "target": "dmg",
130
+ "arch": [
131
+ "arm64",
132
+ "x64"
133
+ ]
134
+ }
135
+ ],
136
+ "identity": null
137
+ },
138
+ "win": {
139
+ "target": "nsis"
123
140
  }
124
141
  }