@xplortech/insights-elements-vue 0.0.1-draft.7729525

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.
Files changed (1) hide show
  1. package/package.json +41 -0
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "@xplortech/insights-elements-vue",
3
+ "version": "0.0.1-draft.7729525",
4
+ "description": "Vue components for Xplor Insights",
5
+ "main": "dist/index.js",
6
+ "module": "dist/index.js",
7
+ "types": "dist/index.d.ts",
8
+ "author": "Xplor Technologies",
9
+ "publishConfig": {
10
+ "access": "public",
11
+ "provenance": false
12
+ },
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/xplor/insights-api.git",
16
+ "directory": "packages/insights-elements-vue"
17
+ },
18
+ "files": [
19
+ "dist/",
20
+ "README.md"
21
+ ],
22
+ "scripts": {
23
+ "build": "npm run clean",
24
+ "build-normal": "npm run clean && npm run compile",
25
+ "clean": "rm -rf dist",
26
+ "compile": "tsc",
27
+ "prepublishOnly": "npm run build"
28
+ },
29
+ "dependencies": {
30
+ "@stencil/vue-output-target": "^0.11.8",
31
+ "@xplortech/insights-elements": "0.0.1-draft.7729525"
32
+ },
33
+ "peerDependencies": {
34
+ "vue": ">=3.0.0"
35
+ },
36
+ "devDependencies": {
37
+ "typescript": "^5.9.3",
38
+ "vue": "^3.5.13"
39
+ },
40
+ "license": "MIT"
41
+ }