@promakeai/inspector 1.4.5 → 1.4.6
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/hooks/useStylePreview.d.ts.map +1 -1
- package/dist/inspector.cdn.js +6 -6
- package/dist/inspector.js +1704 -1677
- package/package.json +87 -87
package/package.json
CHANGED
|
@@ -1,87 +1,87 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@promakeai/inspector",
|
|
3
|
-
"version": "1.4.
|
|
4
|
-
"description": "Visual element inspector React component with AI prompt support",
|
|
5
|
-
"author": "Promake",
|
|
6
|
-
"type": "module",
|
|
7
|
-
"main": "./dist/inspector.js",
|
|
8
|
-
"module": "./dist/inspector.js",
|
|
9
|
-
"types": "./dist/index.d.ts",
|
|
10
|
-
"exports": {
|
|
11
|
-
".": {
|
|
12
|
-
"types": "./dist/index.d.ts",
|
|
13
|
-
"import": "./dist/inspector.js",
|
|
14
|
-
"default": "./dist/inspector.js"
|
|
15
|
-
},
|
|
16
|
-
"./style.css": "./dist/inspector.css",
|
|
17
|
-
"./plugin": {
|
|
18
|
-
"types": "./dist/plugin.d.ts",
|
|
19
|
-
"import": "./dist/plugin.js",
|
|
20
|
-
"default": "./dist/plugin.js"
|
|
21
|
-
},
|
|
22
|
-
"./package.json": "./package.json"
|
|
23
|
-
},
|
|
24
|
-
"files": [
|
|
25
|
-
"dist",
|
|
26
|
-
"README.md"
|
|
27
|
-
],
|
|
28
|
-
"scripts": {
|
|
29
|
-
"build": "vite build && tsc --build --emitDeclarationOnly",
|
|
30
|
-
"build:cdn": "vite build --config vite.cdn.config.ts",
|
|
31
|
-
"build:all": "npm run build && npm run build:cdn",
|
|
32
|
-
"dev": "vite build --watch",
|
|
33
|
-
"preview": "vite preview",
|
|
34
|
-
"clean": "rm -rf dist",
|
|
35
|
-
"lint": "tsc --build --force --dry",
|
|
36
|
-
"test": "vitest run",
|
|
37
|
-
"test:watch": "vitest",
|
|
38
|
-
"test:coverage": "vitest run --coverage",
|
|
39
|
-
"prepublishOnly": "bun run build:all",
|
|
40
|
-
"release": "bun run build:all && npm publish --access public"
|
|
41
|
-
},
|
|
42
|
-
"keywords": [
|
|
43
|
-
"react",
|
|
44
|
-
"inspector",
|
|
45
|
-
"devtools",
|
|
46
|
-
"visual-editor",
|
|
47
|
-
"element-inspector",
|
|
48
|
-
"ai",
|
|
49
|
-
"component"
|
|
50
|
-
],
|
|
51
|
-
"peerDependencies": {
|
|
52
|
-
"react": ">=18.0.0",
|
|
53
|
-
"vite": ">=5.0.0"
|
|
54
|
-
},
|
|
55
|
-
"peerDependenciesMeta": {
|
|
56
|
-
"vite": {
|
|
57
|
-
"optional": true
|
|
58
|
-
}
|
|
59
|
-
},
|
|
60
|
-
"dependencies": {
|
|
61
|
-
"@promakeai/inspector-types": "1.4.4",
|
|
62
|
-
"clsx": "^2.1.1",
|
|
63
|
-
"lodash": "^4.17.21",
|
|
64
|
-
"lucide-react": "^0.554.0",
|
|
65
|
-
"react-colorful": "^5.6.1",
|
|
66
|
-
"vite-plugin-component-debugger": "^2.2.0",
|
|
67
|
-
"zustand": "^5.0.8"
|
|
68
|
-
},
|
|
69
|
-
"devDependencies": {
|
|
70
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
71
|
-
"@testing-library/react": "^16.3.0",
|
|
72
|
-
"@testing-library/user-event": "^14.6.1",
|
|
73
|
-
"@types/lodash": "^4.17.6",
|
|
74
|
-
"@types/node": "^24.10.1",
|
|
75
|
-
"@types/react": "^18.3.1",
|
|
76
|
-
"@types/react-dom": "^18.3.0",
|
|
77
|
-
"@vitejs/plugin-react": "^5.1.1",
|
|
78
|
-
"happy-dom": "^12.10.3",
|
|
79
|
-
"react": "^18.3.1",
|
|
80
|
-
"react-dom": "^18.3.1",
|
|
81
|
-
"typescript": "^5.9.3",
|
|
82
|
-
"vitest": "^1.0.0"
|
|
83
|
-
},
|
|
84
|
-
"publishConfig": {
|
|
85
|
-
"access": "public"
|
|
86
|
-
}
|
|
87
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@promakeai/inspector",
|
|
3
|
+
"version": "1.4.6",
|
|
4
|
+
"description": "Visual element inspector React component with AI prompt support",
|
|
5
|
+
"author": "Promake",
|
|
6
|
+
"type": "module",
|
|
7
|
+
"main": "./dist/inspector.js",
|
|
8
|
+
"module": "./dist/inspector.js",
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"exports": {
|
|
11
|
+
".": {
|
|
12
|
+
"types": "./dist/index.d.ts",
|
|
13
|
+
"import": "./dist/inspector.js",
|
|
14
|
+
"default": "./dist/inspector.js"
|
|
15
|
+
},
|
|
16
|
+
"./style.css": "./dist/inspector.css",
|
|
17
|
+
"./plugin": {
|
|
18
|
+
"types": "./dist/plugin.d.ts",
|
|
19
|
+
"import": "./dist/plugin.js",
|
|
20
|
+
"default": "./dist/plugin.js"
|
|
21
|
+
},
|
|
22
|
+
"./package.json": "./package.json"
|
|
23
|
+
},
|
|
24
|
+
"files": [
|
|
25
|
+
"dist",
|
|
26
|
+
"README.md"
|
|
27
|
+
],
|
|
28
|
+
"scripts": {
|
|
29
|
+
"build": "vite build && tsc --build --emitDeclarationOnly",
|
|
30
|
+
"build:cdn": "vite build --config vite.cdn.config.ts",
|
|
31
|
+
"build:all": "npm run build && npm run build:cdn",
|
|
32
|
+
"dev": "vite build --watch",
|
|
33
|
+
"preview": "vite preview",
|
|
34
|
+
"clean": "rm -rf dist",
|
|
35
|
+
"lint": "tsc --build --force --dry",
|
|
36
|
+
"test": "vitest run",
|
|
37
|
+
"test:watch": "vitest",
|
|
38
|
+
"test:coverage": "vitest run --coverage",
|
|
39
|
+
"prepublishOnly": "bun run build:all",
|
|
40
|
+
"release": "bun run build:all && npm publish --access public"
|
|
41
|
+
},
|
|
42
|
+
"keywords": [
|
|
43
|
+
"react",
|
|
44
|
+
"inspector",
|
|
45
|
+
"devtools",
|
|
46
|
+
"visual-editor",
|
|
47
|
+
"element-inspector",
|
|
48
|
+
"ai",
|
|
49
|
+
"component"
|
|
50
|
+
],
|
|
51
|
+
"peerDependencies": {
|
|
52
|
+
"react": ">=18.0.0",
|
|
53
|
+
"vite": ">=5.0.0"
|
|
54
|
+
},
|
|
55
|
+
"peerDependenciesMeta": {
|
|
56
|
+
"vite": {
|
|
57
|
+
"optional": true
|
|
58
|
+
}
|
|
59
|
+
},
|
|
60
|
+
"dependencies": {
|
|
61
|
+
"@promakeai/inspector-types": "1.4.4",
|
|
62
|
+
"clsx": "^2.1.1",
|
|
63
|
+
"lodash": "^4.17.21",
|
|
64
|
+
"lucide-react": "^0.554.0",
|
|
65
|
+
"react-colorful": "^5.6.1",
|
|
66
|
+
"vite-plugin-component-debugger": "^2.2.0",
|
|
67
|
+
"zustand": "^5.0.8"
|
|
68
|
+
},
|
|
69
|
+
"devDependencies": {
|
|
70
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
71
|
+
"@testing-library/react": "^16.3.0",
|
|
72
|
+
"@testing-library/user-event": "^14.6.1",
|
|
73
|
+
"@types/lodash": "^4.17.6",
|
|
74
|
+
"@types/node": "^24.10.1",
|
|
75
|
+
"@types/react": "^18.3.1",
|
|
76
|
+
"@types/react-dom": "^18.3.0",
|
|
77
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
78
|
+
"happy-dom": "^12.10.3",
|
|
79
|
+
"react": "^18.3.1",
|
|
80
|
+
"react-dom": "^18.3.1",
|
|
81
|
+
"typescript": "^5.9.3",
|
|
82
|
+
"vitest": "^1.0.0"
|
|
83
|
+
},
|
|
84
|
+
"publishConfig": {
|
|
85
|
+
"access": "public"
|
|
86
|
+
}
|
|
87
|
+
}
|