@bisom/web_plugin 1.1.8 → 1.1.10
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/dist/bisom-lib.css +1 -1
- package/dist/bisom-lib.js +13053 -8344
- package/dist/bisom-lib.umd.cjs +5 -3
- package/package.json +12 -9
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bisom/web_plugin",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.10",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -20,14 +20,16 @@
|
|
|
20
20
|
]
|
|
21
21
|
},
|
|
22
22
|
"scripts": {
|
|
23
|
-
"appcheck": "npm run format && npm run
|
|
24
|
-
"publishapp": "npm run
|
|
25
|
-
"
|
|
23
|
+
"appcheck": "npm run format && npm run buildCheck && npm outdated",
|
|
24
|
+
"publishapp": "npm run buildCheck && npm run build && npm publish --access public",
|
|
25
|
+
"buildCheck": "npm run lint && npm run typecheck && npm run depcheck && npm run test",
|
|
26
26
|
"dev": "vite",
|
|
27
27
|
"build": "vite build",
|
|
28
28
|
"preview": "vite preview",
|
|
29
29
|
"i_lock": "rm -rf node_modules package-lock.json && npm i",
|
|
30
30
|
"typecheck": "vue-tsc --build",
|
|
31
|
+
"test": "vitest run",
|
|
32
|
+
"devtest": "vitest",
|
|
31
33
|
"lint": "eslint . --fix",
|
|
32
34
|
"format": "prettier --write src/",
|
|
33
35
|
"depcheck": "depcheck",
|
|
@@ -48,24 +50,25 @@
|
|
|
48
50
|
"devDependencies": {
|
|
49
51
|
"@eslint/js": "^10.0.1",
|
|
50
52
|
"@tsconfig/node22": "^22.0.5",
|
|
51
|
-
"@types/node": "^25.9.
|
|
53
|
+
"@types/node": "^25.9.8",
|
|
52
54
|
"@vitejs/plugin-vue": "^6.0.8",
|
|
53
55
|
"@vue/tsconfig": "^0.8.1",
|
|
54
56
|
"depcheck": "^1.4.7",
|
|
55
|
-
"eslint": "^10.
|
|
57
|
+
"eslint": "^10.11.0",
|
|
56
58
|
"eslint-plugin-vue": "^10.11.0",
|
|
57
59
|
"globals": "^17.12.0",
|
|
58
60
|
"jiti": "^2.7.0",
|
|
59
61
|
"pinia": "^3.0.4",
|
|
60
|
-
"prettier": "^3.9.
|
|
62
|
+
"prettier": "^3.9.8",
|
|
61
63
|
"prettier-plugin-sort-json": "^4.2.0",
|
|
62
64
|
"typescript": "^5.9.3",
|
|
63
65
|
"typescript-eslint": "^8.70.0",
|
|
64
66
|
"vite": "^8.2.2",
|
|
65
67
|
"vite-plugin-vue-devtools": "^8.2.1",
|
|
66
68
|
"vite-plugin-vuetify": "^2.1.3",
|
|
67
|
-
"
|
|
68
|
-
"vue
|
|
69
|
+
"vitest": "^5.0.1",
|
|
70
|
+
"vue": "^3.5.43",
|
|
71
|
+
"vue-i18n": "^11.4.12",
|
|
69
72
|
"vue-router": "^5.3.1",
|
|
70
73
|
"vue-tsc": "^3.3.11",
|
|
71
74
|
"vuetify": "^4.2.1"
|