@mikestools/usefilesystem 0.0.3 → 0.0.4
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 +13 -22
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@mikestools/usefilesystem",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.4",
|
|
4
4
|
"description": "Vue 3 composables for in-memory virtual filesystem and ZIP archive operations",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/usefilesystem.umd.cjs",
|
|
@@ -49,47 +49,38 @@
|
|
|
49
49
|
"vue": "^3.3.0"
|
|
50
50
|
},
|
|
51
51
|
"scripts": {
|
|
52
|
-
"
|
|
53
|
-
"build": "npm run clean dist && vite build && npm run show",
|
|
54
|
-
"build:showcase": "vite build --config configs/vite.showcase.config.ts",
|
|
52
|
+
"build": "npm run clean dist && vite build",
|
|
55
53
|
"check": "npm run decache && vue-tsc",
|
|
56
|
-
"check:showcase": "npm run decache && vue-tsc -p configs/tsconfig.showcase.json",
|
|
57
54
|
"test": "npm run decache && vitest run --no-cache",
|
|
58
55
|
"format": "npm run decache && eslint . --fix",
|
|
59
|
-
"show": "npm run build:showcase && npm run copy dist/showcase/index.html showcase.html && npm run clean dist/showcase",
|
|
60
56
|
"clean": "node -e \"try{require('fs').rmSync(process.argv[1],{recursive:true,force:true});console.log(`Deleted: ${process.argv[1]}`)}catch(e){throw e}\"",
|
|
61
57
|
"copy": "node -e \"try{require('fs').cpSync(process.argv[1],process.argv[2],{force:true});console.log(`Copied: ${process.argv[1]} to ${process.argv[2]}`)}catch(e){throw e}\"",
|
|
62
58
|
"decache": "node -e \"const fs=require('fs');['.eslintcache','node_modules/.vite','node_modules/.vitest','node_modules/.cache'].forEach(p=>{try{fs.rmSync(p,{recursive:true,force:true});console.log(`Cleared: ${p}`)}catch(e){}})\"",
|
|
63
|
-
"prepublishOnly": "npm run check && npm run format && npm test && npm run
|
|
59
|
+
"prepublishOnly": "npm run check && npm run format && npm test && npm run build"
|
|
64
60
|
},
|
|
65
61
|
"devDependencies": {
|
|
66
|
-
"@eslint/js": "^9.39.
|
|
67
|
-
"@mikestools/usebootstrap": "^0.0.5",
|
|
68
|
-
"@mikestools/usedatabase": "^0.0.1",
|
|
69
|
-
"@mikestools/usetable": "^0.0.1",
|
|
70
|
-
"@mikestools/usetools": "^0.0.11",
|
|
71
|
-
"@mikestools/usezip": "^0.0.1",
|
|
62
|
+
"@eslint/js": "^9.39.2",
|
|
72
63
|
"@popperjs/core": "^2.11.8",
|
|
73
64
|
"@types/bootstrap": "^5.2.10",
|
|
74
|
-
"@types/node": "^
|
|
75
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
76
|
-
"@vitest/eslint-plugin": "^1.
|
|
65
|
+
"@types/node": "^25.0.3",
|
|
66
|
+
"@vitejs/plugin-vue": "^6.0.3",
|
|
67
|
+
"@vitest/eslint-plugin": "^1.6.3",
|
|
77
68
|
"@vue/test-utils": "^2.4.6",
|
|
78
69
|
"bootstrap": "^5.3.8",
|
|
79
70
|
"bootstrap-icons": "^1.13.1",
|
|
80
|
-
"eslint": "^9.39.
|
|
71
|
+
"eslint": "^9.39.2",
|
|
81
72
|
"eslint-plugin-vue": "^10.6.2",
|
|
82
73
|
"globals": "^16.5.0",
|
|
83
74
|
"happy-dom": "^20.0.11",
|
|
84
75
|
"jiti": "^2.6.1",
|
|
85
|
-
"sass": "^1.
|
|
76
|
+
"sass": "^1.97.1",
|
|
86
77
|
"typescript": "^5.9.3",
|
|
87
|
-
"typescript-eslint": "^8.
|
|
88
|
-
"vite": "^7.
|
|
78
|
+
"typescript-eslint": "^8.50.1",
|
|
79
|
+
"vite": "^7.3.0",
|
|
89
80
|
"vite-plugin-dts": "^4.5.4",
|
|
90
81
|
"vite-plugin-singlefile": "^2.3.0",
|
|
91
82
|
"vite-svg-loader": "^5.1.0",
|
|
92
|
-
"vitest": "^4.0.
|
|
93
|
-
"vue-tsc": "^3.1
|
|
83
|
+
"vitest": "^4.0.16",
|
|
84
|
+
"vue-tsc": "^3.2.1"
|
|
94
85
|
}
|
|
95
86
|
}
|