@nanoporetech-digital/components-vue 7.3.2 → 7.4.3

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 CHANGED
@@ -1,25 +1,13 @@
1
1
  {
2
2
  "name": "@nanoporetech-digital/components-vue",
3
- "version": "7.3.2",
3
+ "version": "7.4.3",
4
+ "sideEffects": false,
4
5
  "description": "Vue 3 wrapper for Nano Components",
5
6
  "repository": {
6
7
  "type": "git",
7
8
  "url": "https://git.oxfordnanolabs.local/Digital/nano-components"
8
9
  },
9
10
  "license": "MIT",
10
- "scripts": {
11
- "test": "jest",
12
- "test.ci": "jest --ci",
13
- "build": "npm run clean && npm run compile && npm run bundle && npm run build.vetur && npm run build.web-types",
14
- "build.web-types": "node ./scripts/build-web-types.js",
15
- "build.vetur": "node ./scripts/build-vetur.js",
16
- "clean": "rm -rf dist dist-transpiled",
17
- "compile": "npm run tsc",
18
- "bundle": "rollup --config ./rollup.config.mjs",
19
- "tsc": "tsc -p tsconfig.build.json",
20
- "demo.build": "vite build",
21
- "demo": "vite --force --config ./vite.config.ts"
22
- },
23
11
  "type": "module",
24
12
  "exports": {
25
13
  ".": {
@@ -53,13 +41,13 @@
53
41
  "rollup-plugin-copy": "^3.4.0",
54
42
  "rollup-plugin-node-resolve": "^5.2.0",
55
43
  "ts-jest": "^26.0.3",
56
- "typescript": "^4.3.2",
57
- "vite": "^4.3.9",
44
+ "typescript": "^5.0.0",
45
+ "vite": "^5.0.0",
58
46
  "vue": "^3.5",
59
47
  "vue-tsc": "^2.1.6"
60
48
  },
61
49
  "dependencies": {
62
- "@nanoporetech-digital/components": "^7.3.2"
50
+ "@nanoporetech-digital/components": "7.4.3"
63
51
  },
64
52
  "jest": {
65
53
  "preset": "ts-jest",
@@ -78,7 +66,7 @@
78
66
  }
79
67
  }
80
68
  },
81
- "gitHead": "b21785ddc4526403daf4ca2215e4db97904c26d1",
69
+ "gitHead": "cff1d0168dbe2193c1dc1a814ed1cb97b30cfc25",
82
70
  "vetur": {
83
71
  "tags": "dist/vetur/tags.json",
84
72
  "attributes": "dist/vetur/attributes.json"
@@ -88,6 +76,19 @@
88
76
  "esbuild-android-arm64": "^0.14.38"
89
77
  },
90
78
  "volta": {
91
- "node": "18.14.0"
79
+ "extends": "../../package.json"
80
+ },
81
+ "scripts": {
82
+ "test": "jest --ci",
83
+ "build": "npm run clean && npm run compile && npm run bundle && npm run build.vetur && npm run build.web-types",
84
+ "build.test": "npm run build",
85
+ "build.web-types": "node ./scripts/build-web-types.js",
86
+ "build.vetur": "node ./scripts/build-vetur.js",
87
+ "clean": "rm -rf dist dist-transpiled",
88
+ "compile": "npm run tsc",
89
+ "bundle": "rollup --config ./rollup.config.mjs",
90
+ "tsc": "tsc -p tsconfig.build.json",
91
+ "demo.build": "vite build",
92
+ "demo": "vite --force --config ./vite.config.ts"
92
93
  }
93
- }
94
+ }