@promakeai/inspector 1.1.0 → 1.1.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/README.md +232 -240
- package/dist/components/ControlBox/index.d.ts.map +1 -1
- package/dist/inspector.css +1 -1
- package/dist/inspector.js +1052 -1135
- package/package.json +83 -83
package/package.json
CHANGED
|
@@ -1,83 +1,83 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "@promakeai/inspector",
|
|
3
|
-
"version": "1.1.
|
|
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
|
-
"dev": "vite",
|
|
31
|
-
"dev:watch": "vite build --watch",
|
|
32
|
-
"preview": "vite preview",
|
|
33
|
-
"clean": "rm -rf dist",
|
|
34
|
-
"lint": "tsc --build --force --dry",
|
|
35
|
-
"test": "vitest run",
|
|
36
|
-
"test:watch": "vitest",
|
|
37
|
-
"test:coverage": "vitest run --coverage",
|
|
38
|
-
"prepublishOnly": "bun run build"
|
|
39
|
-
},
|
|
40
|
-
"keywords": [
|
|
41
|
-
"react",
|
|
42
|
-
"inspector",
|
|
43
|
-
"devtools",
|
|
44
|
-
"visual-editor",
|
|
45
|
-
"element-inspector",
|
|
46
|
-
"ai",
|
|
47
|
-
"component"
|
|
48
|
-
],
|
|
49
|
-
"peerDependencies": {
|
|
50
|
-
"react": ">=18.0.0",
|
|
51
|
-
"vite": ">=5.0.0"
|
|
52
|
-
},
|
|
53
|
-
"peerDependenciesMeta": {
|
|
54
|
-
"vite": {
|
|
55
|
-
"optional": true
|
|
56
|
-
}
|
|
57
|
-
},
|
|
58
|
-
"dependencies": {
|
|
59
|
-
"@promakeai/inspector-types": "^1.0.1",
|
|
60
|
-
"clsx": "^2.1.1",
|
|
61
|
-
"lodash": "^4.17.21",
|
|
62
|
-
"lucide-react": "^0.554.0",
|
|
63
|
-
"react-colorful": "^5.6.1",
|
|
64
|
-
"vite-plugin-component-debugger": "^2.2.0",
|
|
65
|
-
"zustand": "^5.0.8"
|
|
66
|
-
},
|
|
67
|
-
"devDependencies": {
|
|
68
|
-
"@testing-library/jest-dom": "^6.9.1",
|
|
69
|
-
"@testing-library/react": "^16.3.0",
|
|
70
|
-
"@testing-library/user-event": "^14.6.1",
|
|
71
|
-
"@types/lodash": "^4.17.6",
|
|
72
|
-
"@types/node": "^24.10.1",
|
|
73
|
-
"@types/react": "^19.2.6",
|
|
74
|
-
"@types/react-dom": "^19.2.3",
|
|
75
|
-
"@vitejs/plugin-react": "^5.1.1",
|
|
76
|
-
"happy-dom": "^12.10.3",
|
|
77
|
-
"typescript": "^5.9.3",
|
|
78
|
-
"vitest": "^1.0.0"
|
|
79
|
-
},
|
|
80
|
-
"publishConfig": {
|
|
81
|
-
"access": "public"
|
|
82
|
-
}
|
|
83
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "@promakeai/inspector",
|
|
3
|
+
"version": "1.1.2",
|
|
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
|
+
"dev": "vite",
|
|
31
|
+
"dev:watch": "vite build --watch",
|
|
32
|
+
"preview": "vite preview",
|
|
33
|
+
"clean": "rm -rf dist",
|
|
34
|
+
"lint": "tsc --build --force --dry",
|
|
35
|
+
"test": "vitest run",
|
|
36
|
+
"test:watch": "vitest",
|
|
37
|
+
"test:coverage": "vitest run --coverage",
|
|
38
|
+
"prepublishOnly": "bun run build"
|
|
39
|
+
},
|
|
40
|
+
"keywords": [
|
|
41
|
+
"react",
|
|
42
|
+
"inspector",
|
|
43
|
+
"devtools",
|
|
44
|
+
"visual-editor",
|
|
45
|
+
"element-inspector",
|
|
46
|
+
"ai",
|
|
47
|
+
"component"
|
|
48
|
+
],
|
|
49
|
+
"peerDependencies": {
|
|
50
|
+
"react": ">=18.0.0",
|
|
51
|
+
"vite": ">=5.0.0"
|
|
52
|
+
},
|
|
53
|
+
"peerDependenciesMeta": {
|
|
54
|
+
"vite": {
|
|
55
|
+
"optional": true
|
|
56
|
+
}
|
|
57
|
+
},
|
|
58
|
+
"dependencies": {
|
|
59
|
+
"@promakeai/inspector-types": "^1.0.1",
|
|
60
|
+
"clsx": "^2.1.1",
|
|
61
|
+
"lodash": "^4.17.21",
|
|
62
|
+
"lucide-react": "^0.554.0",
|
|
63
|
+
"react-colorful": "^5.6.1",
|
|
64
|
+
"vite-plugin-component-debugger": "^2.2.0",
|
|
65
|
+
"zustand": "^5.0.8"
|
|
66
|
+
},
|
|
67
|
+
"devDependencies": {
|
|
68
|
+
"@testing-library/jest-dom": "^6.9.1",
|
|
69
|
+
"@testing-library/react": "^16.3.0",
|
|
70
|
+
"@testing-library/user-event": "^14.6.1",
|
|
71
|
+
"@types/lodash": "^4.17.6",
|
|
72
|
+
"@types/node": "^24.10.1",
|
|
73
|
+
"@types/react": "^19.2.6",
|
|
74
|
+
"@types/react-dom": "^19.2.3",
|
|
75
|
+
"@vitejs/plugin-react": "^5.1.1",
|
|
76
|
+
"happy-dom": "^12.10.3",
|
|
77
|
+
"typescript": "^5.9.3",
|
|
78
|
+
"vitest": "^1.0.0"
|
|
79
|
+
},
|
|
80
|
+
"publishConfig": {
|
|
81
|
+
"access": "public"
|
|
82
|
+
}
|
|
83
|
+
}
|