mitway-tagger 1.3.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/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "mitway-tagger",
3
+ "version": "1.3.0",
4
+ "description": "Vite plugin suite for Mesh IT Midway integration: source tracking, visual editing, theme preview, iframe navigation, and server configuration",
5
+ "main": "./dist/index.js",
6
+ "module": "./dist/index.mjs",
7
+ "types": "./dist/index.d.ts",
8
+ "type": "module",
9
+ "files": [
10
+ "dist"
11
+ ],
12
+ "scripts": {
13
+ "build": "tsup src/index.ts --format cjs,esm --dts --outDir dist",
14
+ "dev": "tsup src/index.ts --format cjs,esm --dts --watch",
15
+ "prepublishOnly": "npm run build",
16
+ "clean": "rimraf dist"
17
+ },
18
+ "keywords": [
19
+ "vite",
20
+ "plugin",
21
+ "component",
22
+ "tagger",
23
+ "source",
24
+ "tracking",
25
+ "virtual",
26
+ "overrides",
27
+ "hmr",
28
+ "mitway",
29
+ "visual-editor",
30
+ "theme",
31
+ "iframe",
32
+ "cors",
33
+ "csp"
34
+ ],
35
+ "author": "Mesh IT Midway Team",
36
+ "license": "MIT",
37
+ "peerDependencies": {
38
+ "vite": ">=5.0.0"
39
+ },
40
+ "devDependencies": {
41
+ "@types/node": "^24.10.1",
42
+ "rimraf": "^5.0.10",
43
+ "tsup": "^8.0.0",
44
+ "typescript": "^5.9.3",
45
+ "vite": "^7.2.4"
46
+ }
47
+ }