@opengis/widgets 0.0.3 → 0.0.5
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
CHANGED
|
@@ -37,7 +37,7 @@ npm install @opengis/widgets
|
|
|
37
37
|
```ts
|
|
38
38
|
import { createApp } from 'vue'
|
|
39
39
|
import App from './App.vue'
|
|
40
|
-
import { DescriptionList, DescriptionItem } from '@opengis/
|
|
40
|
+
import { DescriptionList, DescriptionItem } from '@opengis/widgets'
|
|
41
41
|
|
|
42
42
|
createApp(App).component('DescriptionList', DescriptionList).mount('#app')
|
|
43
43
|
createApp(App).component('DescriptionItem', DescriptionItem).mount('#app')
|
package/package.json
CHANGED
|
@@ -1,11 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opengis/widgets",
|
|
3
|
-
"version": "0.0.3",
|
|
4
|
-
"description": "A collection of independent widgets for comments, history, files, and gallery",
|
|
5
3
|
"private": false,
|
|
4
|
+
"version": "0.0.5",
|
|
6
5
|
"type": "module",
|
|
7
|
-
"
|
|
6
|
+
"description": "A collection of independent widgets for comments, history, files, and gallery",
|
|
7
|
+
"main": "dist/index.js",
|
|
8
|
+
"files": [
|
|
9
|
+
"dist"
|
|
10
|
+
],
|
|
11
|
+
"scripts": {
|
|
12
|
+
"dev": "vite",
|
|
13
|
+
"build:ts": "vue-tsc -b && vite build",
|
|
14
|
+
"build": "vite build",
|
|
15
|
+
"build:app": "app=true vite build",
|
|
16
|
+
"preview": "vite preview",
|
|
17
|
+
"prepublishOnly": "bun run build",
|
|
18
|
+
"type-check": "vue-tsc --noEmit"
|
|
19
|
+
},
|
|
8
20
|
"homepage": "https://widget.opengis.info/",
|
|
21
|
+
"author": {
|
|
22
|
+
"name": "OpenGIS",
|
|
23
|
+
"url": "https://opengis.info/"
|
|
24
|
+
},
|
|
9
25
|
"keywords": [
|
|
10
26
|
"widgets",
|
|
11
27
|
"comments",
|
|
@@ -16,9 +32,24 @@
|
|
|
16
32
|
"components",
|
|
17
33
|
"opengis"
|
|
18
34
|
],
|
|
19
|
-
"
|
|
20
|
-
|
|
21
|
-
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"dependencies": {},
|
|
37
|
+
"devDependencies": {
|
|
38
|
+
"lucide-vue-next": "^0.535.0",
|
|
39
|
+
"vue": "^3.0.0",
|
|
40
|
+
"@tsconfig/node22": "^22.0.2",
|
|
41
|
+
"@types/node": "^24.2.0",
|
|
42
|
+
"@vitejs/plugin-vue": "^5.0.0",
|
|
43
|
+
"@vue/tsconfig": "^0.7.0",
|
|
44
|
+
"autoprefixer": "^10.4.16",
|
|
45
|
+
"dts-bundle-generator": "^8.0.0",
|
|
46
|
+
"postcss": "^8.4.31",
|
|
47
|
+
"tailwindcss": "^3.4.0",
|
|
48
|
+
"typescript": "~5.8.3",
|
|
49
|
+
"vite": "^6.0.0",
|
|
50
|
+
"vue-tsc": "^2.2.12"
|
|
22
51
|
},
|
|
23
|
-
"
|
|
52
|
+
"peerDependencies": {
|
|
53
|
+
"vue": "^3.0.0"
|
|
54
|
+
}
|
|
24
55
|
}
|
|
File without changes
|
|
File without changes
|
|
File without changes
|