@bisom/web_plugin 1.0.1 → 1.0.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/dist/bisom-lib.css +1 -1
- package/dist/bisom-lib.js +2565 -2541
- package/dist/bisom-lib.umd.cjs +4 -4
- package/package.json +18 -17
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@bisom/web_plugin",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.3",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"files": [
|
|
6
6
|
"dist"
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"scripts": {
|
|
23
23
|
"appcheck": "npm run format && npm run herokuCheck && npm outdated",
|
|
24
24
|
"publishapp": "npm run herokuCheck && npm run build && npm publish --access public",
|
|
25
|
-
"herokuCheck": "npm run lint && npm run typecheck && npm run depcheck
|
|
25
|
+
"herokuCheck": "npm run lint && npm run typecheck && npm run depcheck",
|
|
26
26
|
"dev": "vite",
|
|
27
27
|
"build": "vite build",
|
|
28
28
|
"preview": "vite preview",
|
|
@@ -30,7 +30,8 @@
|
|
|
30
30
|
"typecheck": "vue-tsc --build",
|
|
31
31
|
"lint": "eslint . --fix",
|
|
32
32
|
"format": "prettier --write src/",
|
|
33
|
-
"depcheck": "depcheck"
|
|
33
|
+
"depcheck": "depcheck",
|
|
34
|
+
"cleanbranch": "git branch | grep -v '^*' | awk '{print $1}' | grep -vE '^(main|staging|recette)$' | xargs -r git branch -D"
|
|
34
35
|
},
|
|
35
36
|
"peerDependencies": {
|
|
36
37
|
"pinia": "^3.0.4",
|
|
@@ -40,32 +41,32 @@
|
|
|
40
41
|
"vuetify": "^4.0.0"
|
|
41
42
|
},
|
|
42
43
|
"dependencies": {
|
|
43
|
-
"@bisom/web_package": "^2.0.
|
|
44
|
-
"axios": "^1.
|
|
44
|
+
"@bisom/web_package": "^2.0.6",
|
|
45
|
+
"axios": "^1.16.0"
|
|
45
46
|
},
|
|
46
47
|
"devDependencies": {
|
|
47
48
|
"@eslint/js": "^10.0.1",
|
|
48
49
|
"@tsconfig/node22": "^22.0.5",
|
|
49
|
-
"@types/node": "^25.6.
|
|
50
|
+
"@types/node": "^25.6.2",
|
|
50
51
|
"@vitejs/plugin-vue": "^6.0.6",
|
|
51
52
|
"@vue/tsconfig": "^0.8.1",
|
|
52
53
|
"depcheck": "^1.4.7",
|
|
53
|
-
"eslint": "^10.
|
|
54
|
-
"eslint-plugin-vue": "^10.9.
|
|
55
|
-
"globals": "^17.
|
|
56
|
-
"jiti": "^2.
|
|
54
|
+
"eslint": "^10.3.0",
|
|
55
|
+
"eslint-plugin-vue": "^10.9.1",
|
|
56
|
+
"globals": "^17.6.0",
|
|
57
|
+
"jiti": "^2.7.0",
|
|
57
58
|
"pinia": "^3.0.4",
|
|
58
59
|
"prettier": "^3.8.3",
|
|
59
60
|
"prettier-plugin-sort-json": "^4.2.0",
|
|
60
61
|
"typescript": "^5.9.3",
|
|
61
|
-
"typescript-eslint": "^8.59.
|
|
62
|
-
"vite": "^7.3.
|
|
63
|
-
"vite-plugin-vue-devtools": "^8.1.
|
|
62
|
+
"typescript-eslint": "^8.59.2",
|
|
63
|
+
"vite": "^7.3.3",
|
|
64
|
+
"vite-plugin-vue-devtools": "^8.1.2",
|
|
64
65
|
"vite-plugin-vuetify": "^2.1.3",
|
|
65
|
-
"vue": "^3.5.
|
|
66
|
-
"vue-i18n": "^11.4.
|
|
66
|
+
"vue": "^3.5.34",
|
|
67
|
+
"vue-i18n": "^11.4.2",
|
|
67
68
|
"vue-router": "^5.0.6",
|
|
68
|
-
"vue-tsc": "^3.2.
|
|
69
|
-
"vuetify": "^4.0.
|
|
69
|
+
"vue-tsc": "^3.2.8",
|
|
70
|
+
"vuetify": "^4.0.7"
|
|
70
71
|
}
|
|
71
72
|
}
|