@blqke/vgentation 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/README.md +1 -0
- package/dist/components/AnnotationPopup.vue.d.ts +52 -0
- package/dist/components/Vgentation.vue.d.ts +103 -0
- package/dist/components/icons/AnimatedBunny.vue.d.ts +7 -0
- package/dist/components/icons/IconCheckSmallAnimated.vue.d.ts +6 -0
- package/dist/components/icons/IconCopyAnimated.vue.d.ts +7 -0
- package/dist/components/icons/IconEyeAnimated.vue.d.ts +7 -0
- package/dist/components/icons/IconPausePlayAnimated.vue.d.ts +7 -0
- package/dist/components/icons/index.d.ts +34 -0
- package/dist/composables/useVgentation.d.ts +63 -0
- package/dist/index.cjs +5059 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +5059 -0
- package/dist/nuxt/module.d.ts +9 -0
- package/dist/nuxt.cjs +47 -0
- package/dist/nuxt.d.ts +4 -0
- package/dist/nuxt.mjs +48 -0
- package/dist/playground/App.vue.d.ts +3 -0
- package/dist/playground/main.d.ts +1 -0
- package/dist/plugin.d.ts +37 -0
- package/dist/types.d.ts +54 -0
- package/dist/utils/config.d.ts +98 -0
- package/dist/utils/devtools-integration.d.ts +190 -0
- package/dist/utils/element-identification.d.ts +72 -0
- package/dist/utils/nuxt-detection.d.ts +90 -0
- package/dist/utils/storage.d.ts +5 -0
- package/dist/utils/vue-detection.d.ts +78 -0
- package/dist/vgentation.css +1790 -0
- package/package.json +61 -0
package/package.json
ADDED
|
@@ -0,0 +1,61 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@blqke/vgentation",
|
|
3
|
+
"publishConfig": {
|
|
4
|
+
"access": "public"
|
|
5
|
+
},
|
|
6
|
+
"version": "0.1.0",
|
|
7
|
+
"description": "Vue annotation component",
|
|
8
|
+
"keywords": ["vue"],
|
|
9
|
+
"license": "MIT",
|
|
10
|
+
"files": [
|
|
11
|
+
"dist",
|
|
12
|
+
"README.md"
|
|
13
|
+
],
|
|
14
|
+
"type": "module",
|
|
15
|
+
"main": "./dist/index.cjs",
|
|
16
|
+
"module": "./dist/index.js",
|
|
17
|
+
"types": "./dist/index.d.ts",
|
|
18
|
+
"exports": {
|
|
19
|
+
".": {
|
|
20
|
+
"types": "./dist/index.d.ts",
|
|
21
|
+
"import": "./dist/index.js",
|
|
22
|
+
"require": "./dist/index.cjs"
|
|
23
|
+
},
|
|
24
|
+
"./nuxt": {
|
|
25
|
+
"types": "./dist/nuxt.d.ts",
|
|
26
|
+
"import": "./dist/nuxt.mjs"
|
|
27
|
+
},
|
|
28
|
+
"./style.css": "./dist/vgentation.css"
|
|
29
|
+
},
|
|
30
|
+
"scripts": {
|
|
31
|
+
"build": "vue-tsc --noEmit && vite build",
|
|
32
|
+
"dev": "vite",
|
|
33
|
+
"preview": "vite preview",
|
|
34
|
+
"play:vue": "pnpm build && cd playground/vue && pnpm install && pnpm dev",
|
|
35
|
+
"play:nuxt": "pnpm build && cd playground/nuxt && pnpm install && pnpm dev",
|
|
36
|
+
"lint": "oxlint",
|
|
37
|
+
"lint:fix": "oxlint --fix",
|
|
38
|
+
"fmt": "oxfmt --write .",
|
|
39
|
+
"fmt:check": "oxfmt --check ."
|
|
40
|
+
},
|
|
41
|
+
"devDependencies": {
|
|
42
|
+
"@nuxt/kit": "^3.16.1",
|
|
43
|
+
"@vitejs/plugin-vue": "^6.0.3",
|
|
44
|
+
"oxfmt": "^0.26.0",
|
|
45
|
+
"oxlint": "^1.41.0",
|
|
46
|
+
"sass": "^1.97.3",
|
|
47
|
+
"typescript": "^5.9.3",
|
|
48
|
+
"vite": "^7.3.1",
|
|
49
|
+
"vite-plugin-dts": "^4.5.4",
|
|
50
|
+
"vue": "^3.5.27",
|
|
51
|
+
"vue-tsc": "^3.2.2"
|
|
52
|
+
},
|
|
53
|
+
"peerDependencies": {
|
|
54
|
+
"vue": "^3.4.0"
|
|
55
|
+
},
|
|
56
|
+
"peerDependenciesMeta": {
|
|
57
|
+
"@nuxt/kit": {
|
|
58
|
+
"optional": true
|
|
59
|
+
}
|
|
60
|
+
}
|
|
61
|
+
}
|