aipeek 0.2.0 → 0.2.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 (1) hide show
  1. package/package.json +44 -43
package/package.json CHANGED
@@ -1,46 +1,47 @@
1
1
  {
2
- "name": "aipeek",
3
- "version": "0.2.0",
4
- "description": "Gives AI a peek into your running browser app — UI tree, console, network, errors, state",
5
- "license": "MIT",
6
- "repository": {
7
- "type": "git",
8
- "url": "https://github.com/nicepkg/aipeek"
9
- },
10
- "type": "module",
11
- "exports": {
12
- ".": {
13
- "import": "./dist/index.js",
14
- "require": "./dist/index.cjs"
2
+ "name": "aipeek",
3
+ "version": "0.2.1",
4
+ "description": "Gives AI a peek into your running browser app — UI tree, console, network, errors, state",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "https://github.com/nicepkg/aipeek"
9
+ },
10
+ "type": "module",
11
+ "exports": {
12
+ ".": {
13
+ "import": "./dist/index.js",
14
+ "require": "./dist/index.cjs"
15
+ }
16
+ },
17
+ "bin": {
18
+ "aipeek": "dist/cli.js"
19
+ },
20
+ "files": [
21
+ "dist"
22
+ ],
23
+ "scripts": {
24
+ "build": "tsup",
25
+ "test": "vitest run",
26
+ "test:watch": "vitest",
27
+ "prepublishOnly": "bun run build"
28
+ },
29
+ "dependencies": {
30
+ "html-to-image": "^1.11.13",
31
+ "picocolors": "^1.1.1"
32
+ },
33
+ "peerDependencies": {
34
+ "vite": ">=5.0.0"
35
+ },
36
+ "peerDependenciesMeta": {
37
+ "vite": {
38
+ "optional": true
39
+ }
40
+ },
41
+ "devDependencies": {
42
+ "jsdom": "^29.1.1",
43
+ "tsup": "^8.4.0",
44
+ "typescript": "~5.7.2",
45
+ "vitest": "^3.1.2"
15
46
  }
16
- },
17
- "bin": {
18
- "aipeek": "dist/cli.js"
19
- },
20
- "files": [
21
- "dist"
22
- ],
23
- "scripts": {
24
- "build": "tsup",
25
- "test": "vitest run",
26
- "test:watch": "vitest"
27
- },
28
- "dependencies": {
29
- "html-to-image": "^1.11.13",
30
- "picocolors": "^1.1.1"
31
- },
32
- "peerDependencies": {
33
- "vite": ">=5.0.0"
34
- },
35
- "peerDependenciesMeta": {
36
- "vite": {
37
- "optional": true
38
- }
39
- },
40
- "devDependencies": {
41
- "jsdom": "^29.1.1",
42
- "tsup": "^8.4.0",
43
- "typescript": "~5.7.2",
44
- "vitest": "^3.1.2"
45
- }
46
47
  }