ui-sniper 3.0.2 → 3.0.4

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/package.json CHANGED
@@ -1,64 +1,66 @@
1
- {
2
- "name": "ui-sniper",
3
- "version": "3.0.2",
4
- "description": "Visual feedback for AI coding agents",
5
- "sideEffects": false,
6
- "author": "shiva patil",
7
- "license": "PolyForm-Shield-1.0.0",
8
- "main": "./dist/index.js",
9
- "module": "./dist/index.mjs",
10
- "types": "./dist/index.d.ts",
11
- "exports": {
12
- ".": {
13
- "types": "./dist/index.d.ts",
14
- "import": {
15
- "types": "./dist/index.d.mts",
16
- "default": "./dist/index.mjs"
17
- },
18
- "require": {
19
- "types": "./dist/index.d.ts",
20
- "default": "./dist/index.js"
21
- }
22
- }
23
- },
24
- "files": [
25
- "dist"
26
- ],
27
- "scripts": {
28
- "build": "tsup",
29
- "watch": "tsup --watch",
30
- "dev": "pnpm build && pnpm watch",
31
- "test": "vitest run",
32
- "test:watch": "vitest",
33
- "prepublishOnly": "pnpm build"
34
- },
35
- "peerDependencies": {
36
- "react": ">=18.0.0",
37
- "react-dom": ">=18.0.0"
38
- },
39
- "peerDependenciesMeta": {
40
- "react": {
41
- "optional": true
42
- },
43
- "react-dom": {
44
- "optional": true
45
- }
46
- },
47
- "devDependencies": {
48
- "@testing-library/react": "^16.0.0",
49
- "@types/node": "^20.0.0",
50
- "@types/react": "^18.2.0",
51
- "@types/react-dom": "^18.2.0",
52
- "@vitejs/plugin-react": "^4.3.0",
53
- "esbuild-sass-plugin": "^3.6.0",
54
- "jsdom": "^25.0.0",
55
- "postcss": "^8.5.6",
56
- "postcss-modules": "^6.0.1",
57
- "react": "^18.2.0",
58
- "react-dom": "^18.2.0",
59
- "sass": "^1.97.2",
60
- "tsup": "^8.0.0",
61
- "typescript": "^5.0.0",
62
- "vitest": "^2.0.0"
63
- }
64
- }
1
+ {
2
+ "name": "ui-sniper",
3
+ "version": "3.0.4",
4
+ "description": "Visual feedback for AI coding agents",
5
+ "sideEffects": false,
6
+ "author": "Shiva Patil",
7
+ "license": "PolyForm-Shield-1.0.0",
8
+ "main": "./dist/index.js",
9
+ "module": "./dist/index.mjs",
10
+ "types": "./dist/index.d.ts",
11
+ "exports": {
12
+ ".": {
13
+ "types": "./dist/index.d.ts",
14
+ "import": {
15
+ "types": "./dist/index.d.mts",
16
+ "default": "./dist/index.mjs"
17
+ },
18
+ "require": {
19
+ "types": "./dist/index.d.ts",
20
+ "default": "./dist/index.js"
21
+ }
22
+ }
23
+ },
24
+ "files": [
25
+ "dist"
26
+ ],
27
+ "peerDependencies": {
28
+ "react": ">=18.0.0",
29
+ "react-dom": ">=18.0.0"
30
+ },
31
+ "peerDependenciesMeta": {
32
+ "react": {
33
+ "optional": true
34
+ },
35
+ "react-dom": {
36
+ "optional": true
37
+ }
38
+ },
39
+ "devDependencies": {
40
+ "@testing-library/react": "^16.0.0",
41
+ "@types/node": "^20.0.0",
42
+ "@types/react": "^18.2.0",
43
+ "@types/react-dom": "^18.2.0",
44
+ "@vitejs/plugin-react": "^4.3.0",
45
+ "esbuild-sass-plugin": "^3.6.0",
46
+ "jsdom": "^25.0.0",
47
+ "postcss": "^8.5.6",
48
+ "postcss-modules": "^6.0.1",
49
+ "react": "^18.2.0",
50
+ "react-dom": "^18.2.0",
51
+ "sass": "^1.97.2",
52
+ "tsup": "^8.0.0",
53
+ "typescript": "^5.0.0",
54
+ "vitest": "^2.0.0"
55
+ },
56
+ "dependencies": {
57
+ "html-to-image": "^1.11.13"
58
+ },
59
+ "scripts": {
60
+ "build": "tsup",
61
+ "watch": "tsup --watch",
62
+ "dev": "pnpm build && pnpm watch",
63
+ "test": "vitest run",
64
+ "test:watch": "vitest"
65
+ }
66
+ }