aipeek 0.2.1 → 0.2.2
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/dist/chunk-GIMXNZD5.cjs +1203 -0
- package/dist/chunk-JOY7QP24.js +1199 -0
- package/dist/chunk-Z2Y65YOY.cjs +7 -0
- package/dist/cli.cjs +3 -1
- package/dist/index.cjs +3 -2
- package/dist/index.js +1 -1
- package/dist/plugin.cjs +3 -2
- package/dist/plugin.js +1 -1
- package/package.json +2 -1
- package/dist/chunk-E7YXT6HW.js +0 -3732
- package/dist/chunk-IOK7MMPT.cjs +0 -3732
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
"use strict";Object.defineProperty(exports, "__esModule", {value: true});// node_modules/tsup/assets/cjs_shims.js
|
|
2
|
+
var getImportMetaUrl = () => typeof document === "undefined" ? new URL(`file:${__filename}`).href : document.currentScript && document.currentScript.tagName.toUpperCase() === "SCRIPT" ? document.currentScript.src : new URL("main.js", document.baseURI).href;
|
|
3
|
+
var importMetaUrl = /* @__PURE__ */ getImportMetaUrl();
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
exports.importMetaUrl = importMetaUrl;
|
package/dist/cli.cjs
CHANGED
|
@@ -1,4 +1,6 @@
|
|
|
1
|
-
"use strict"; function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } }
|
|
1
|
+
"use strict"; function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { default: obj }; } function _nullishCoalesce(lhs, rhsFn) { if (lhs != null) { return lhs; } else { return rhsFn(); } }require('./chunk-Z2Y65YOY.cjs');
|
|
2
|
+
|
|
3
|
+
// src/server/cli.ts
|
|
2
4
|
var _process = require('process'); var _process2 = _interopRequireDefault(_process);
|
|
3
5
|
var _picocolors = require('picocolors'); var _picocolors2 = _interopRequireDefault(_picocolors);
|
|
4
6
|
var args = _process2.default.argv.slice(2);
|
package/dist/index.cjs
CHANGED
|
@@ -5,7 +5,8 @@
|
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunkGIMXNZD5cjs = require('./chunk-GIMXNZD5.cjs');
|
|
9
|
+
require('./chunk-Z2Y65YOY.cjs');
|
|
9
10
|
|
|
10
11
|
|
|
11
12
|
|
|
@@ -13,4 +14,4 @@ var _chunkIOK7MMPTcjs = require('./chunk-IOK7MMPT.cjs');
|
|
|
13
14
|
|
|
14
15
|
|
|
15
16
|
|
|
16
|
-
exports.aipeekPlugin =
|
|
17
|
+
exports.aipeekPlugin = _chunkGIMXNZD5cjs.aipeekPlugin; exports.check = _chunkGIMXNZD5cjs.check; exports.diffState = _chunkGIMXNZD5cjs.diffState; exports.emitCheck = _chunkGIMXNZD5cjs.emitCheck; exports.emitDiff = _chunkGIMXNZD5cjs.emitDiff; exports.emitSummary = _chunkGIMXNZD5cjs.emitSummary;
|
package/dist/index.js
CHANGED
package/dist/plugin.cjs
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
3
|
+
var _chunkGIMXNZD5cjs = require('./chunk-GIMXNZD5.cjs');
|
|
4
|
+
require('./chunk-Z2Y65YOY.cjs');
|
|
4
5
|
|
|
5
6
|
|
|
6
|
-
exports.aipeekPlugin =
|
|
7
|
+
exports.aipeekPlugin = _chunkGIMXNZD5cjs.aipeekPlugin;
|
package/dist/plugin.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aipeek",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
4
|
"description": "Gives AI a peek into your running browser app — UI tree, console, network, errors, state",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"repository": {
|
|
@@ -27,6 +27,7 @@
|
|
|
27
27
|
"prepublishOnly": "bun run build"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
+
"esbuild": "^0.25.0",
|
|
30
31
|
"html-to-image": "^1.11.13",
|
|
31
32
|
"picocolors": "^1.1.1"
|
|
32
33
|
},
|