semantic-inspector 0.1.0
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/LICENSE +21 -0
- package/README.md +113 -0
- package/dist/babel.cjs +64 -0
- package/dist/babel.cjs.map +1 -0
- package/dist/babel.d.cts +21 -0
- package/dist/babel.d.ts +21 -0
- package/dist/babel.js +3 -0
- package/dist/babel.js.map +1 -0
- package/dist/chunk-AAPCI2HO.js +62 -0
- package/dist/chunk-AAPCI2HO.js.map +1 -0
- package/dist/index.cjs +244 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +62 -0
- package/dist/index.d.ts +62 -0
- package/dist/index.js +238 -0
- package/dist/index.js.map +1 -0
- package/dist/vite.cjs +101 -0
- package/dist/vite.cjs.map +1 -0
- package/dist/vite.d.cts +21 -0
- package/dist/vite.d.ts +21 -0
- package/dist/vite.js +38 -0
- package/dist/vite.js.map +1 -0
- package/package.json +114 -0
package/package.json
ADDED
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "semantic-inspector",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Dev-only React inspector: a hotkey highlights elements and click-copies their `Component — file:line` (or a PNG screenshot) for fast context handoff to AI coding assistants.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"license": "MIT",
|
|
7
|
+
"author": "ghost-vk <chains.subplot03@icloud.com>",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/ghost-vk/semantic-inspector.git"
|
|
11
|
+
},
|
|
12
|
+
"homepage": "https://github.com/ghost-vk/semantic-inspector#readme",
|
|
13
|
+
"bugs": {
|
|
14
|
+
"url": "https://github.com/ghost-vk/semantic-inspector/issues"
|
|
15
|
+
},
|
|
16
|
+
"keywords": [
|
|
17
|
+
"react",
|
|
18
|
+
"vite",
|
|
19
|
+
"vite-plugin",
|
|
20
|
+
"babel",
|
|
21
|
+
"babel-plugin",
|
|
22
|
+
"devtools",
|
|
23
|
+
"inspector",
|
|
24
|
+
"jsx",
|
|
25
|
+
"source-location",
|
|
26
|
+
"data-loc",
|
|
27
|
+
"vibe-coding",
|
|
28
|
+
"ai",
|
|
29
|
+
"screenshot",
|
|
30
|
+
"clipboard"
|
|
31
|
+
],
|
|
32
|
+
"sideEffects": false,
|
|
33
|
+
"main": "./dist/index.cjs",
|
|
34
|
+
"module": "./dist/index.js",
|
|
35
|
+
"types": "./dist/index.d.ts",
|
|
36
|
+
"exports": {
|
|
37
|
+
".": {
|
|
38
|
+
"import": {
|
|
39
|
+
"types": "./dist/index.d.ts",
|
|
40
|
+
"default": "./dist/index.js"
|
|
41
|
+
},
|
|
42
|
+
"require": {
|
|
43
|
+
"types": "./dist/index.d.cts",
|
|
44
|
+
"default": "./dist/index.cjs"
|
|
45
|
+
}
|
|
46
|
+
},
|
|
47
|
+
"./vite": {
|
|
48
|
+
"import": {
|
|
49
|
+
"types": "./dist/vite.d.ts",
|
|
50
|
+
"default": "./dist/vite.js"
|
|
51
|
+
},
|
|
52
|
+
"require": {
|
|
53
|
+
"types": "./dist/vite.d.cts",
|
|
54
|
+
"default": "./dist/vite.cjs"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"./babel": {
|
|
58
|
+
"import": {
|
|
59
|
+
"types": "./dist/babel.d.ts",
|
|
60
|
+
"default": "./dist/babel.js"
|
|
61
|
+
},
|
|
62
|
+
"require": {
|
|
63
|
+
"types": "./dist/babel.d.cts",
|
|
64
|
+
"default": "./dist/babel.cjs"
|
|
65
|
+
}
|
|
66
|
+
}
|
|
67
|
+
},
|
|
68
|
+
"files": [
|
|
69
|
+
"dist"
|
|
70
|
+
],
|
|
71
|
+
"scripts": {
|
|
72
|
+
"build": "tsup",
|
|
73
|
+
"dev": "tsup --watch",
|
|
74
|
+
"test": "vitest run",
|
|
75
|
+
"test:watch": "vitest",
|
|
76
|
+
"typecheck": "tsc --noEmit",
|
|
77
|
+
"prepublishOnly": "npm run build"
|
|
78
|
+
},
|
|
79
|
+
"peerDependencies": {
|
|
80
|
+
"react": ">=18",
|
|
81
|
+
"react-dom": ">=18",
|
|
82
|
+
"vite": ">=4"
|
|
83
|
+
},
|
|
84
|
+
"peerDependenciesMeta": {
|
|
85
|
+
"vite": {
|
|
86
|
+
"optional": true
|
|
87
|
+
}
|
|
88
|
+
},
|
|
89
|
+
"dependencies": {
|
|
90
|
+
"@babel/core": "^7.25.0",
|
|
91
|
+
"modern-screenshot": "^4.7.0"
|
|
92
|
+
},
|
|
93
|
+
"devDependencies": {
|
|
94
|
+
"@testing-library/react": "^16.3.2",
|
|
95
|
+
"@types/babel__core": "^7.20.5",
|
|
96
|
+
"@types/node": "^25.9.2",
|
|
97
|
+
"@types/react": "^19.2.0",
|
|
98
|
+
"@types/react-dom": "^19.2.0",
|
|
99
|
+
"@vitejs/plugin-react": "^6.0.0",
|
|
100
|
+
"happy-dom": "^20.9.0",
|
|
101
|
+
"react": "^19.2.0",
|
|
102
|
+
"react-dom": "^19.2.0",
|
|
103
|
+
"tsup": "^8.3.0",
|
|
104
|
+
"typescript": "^6.0.3",
|
|
105
|
+
"vite": "^8.0.0",
|
|
106
|
+
"vitest": "^4.1.4"
|
|
107
|
+
},
|
|
108
|
+
"publishConfig": {
|
|
109
|
+
"access": "public"
|
|
110
|
+
},
|
|
111
|
+
"engines": {
|
|
112
|
+
"node": ">=18"
|
|
113
|
+
}
|
|
114
|
+
}
|