@synet/fs-azure
Version:
Azure filesystem abstraction following FileSystem pattern
66 lines (65 loc) • 1.88 kB
JSON
{
"name": "@synet/fs-azure",
"version": "1.0.1",
"description": "Azure filesystem abstraction following FileSystem pattern",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.js",
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/synthetism/fs-azure.git"
},
"scripts": {
"build": "tsc",
"test": "vitest run",
"dev:test": "vitest",
"clean": "rimraf dist",
"demo": "tsx demo/azure-demo.ts",
"coverage": "vitest --coverage",
"lint": "biome lint ./src",
"check": "biome check ./src",
"type-check": "tsc --noEmit --skipLibCheck",
"format": "biome format --write ./src ./test",
"prepublishOnly": "npm run clean && npm run lint && npm run build",
"version:dev": "npm version --no-git-tag-version prerelease --preid=dev",
"version:patch": "npm version --no-git-tag-version patch",
"version:minor": "npm version --no-git-tag-version minor",
"version:major": "npm version --no-git-tag-version major",
"publish:dev": "npm publish --registry=http://registry.dig.run/ --tag dev",
"publish:prod": "npm publish --registry=https://registry.npmjs.org/"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/node": "^22.15.17",
"@vitest/coverage-v8": "^3.1.3",
"rimraf": "^6.0.1",
"typescript": "^5.8.3",
"vitest": "^3.1.3"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"keywords": [
"Filesystem",
"Azure Blob Storage",
"Synthetism",
"Patterns"
],
"author": "Synet",
"homepage": "https://synthetism.ai",
"license": "MIT",
"dependencies": {
"@azure/storage-blob": "^12.28.0"
}
}