@firesystem/memory
Version:
In-memory implementation of Virtual File System
81 lines • 1.73 kB
JSON
{
"name": "@firesystem/memory",
"version": "1.1.5",
"description": "In-memory implementation of Virtual File System",
"type": "module",
"main": "./dist/src/index.cjs",
"module": "./dist/src/index.js",
"types": "./dist/src/index.d.ts",
"exports": {
".": {
"types": "./dist/src/index.d.ts",
"import": "./dist/src/index.js",
"require": "./dist/src/index.cjs"
},
"./provider": {
"types": "./dist/provider.d.ts",
"import": "./dist/provider.js",
"require": "./dist/provider.cjs"
}
},
"files": [
"dist",
"src",
"provider.ts",
"README.md"
],
"keywords": [
"vfs",
"memory",
"virtual-file-system",
"in-memory-storage"
],
"author": "Anderson D. Rosa",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@firesystem/core": "1.1.1"
},
"devDependencies": {
"@workspace-fs/core": "^1.0.8",
"@types/node": "^20.10.5",
"eslint": "^8.57.1",
"fake-indexeddb": "^6.0.1",
"tsup": "^8.0.1",
"typescript": "^5.3.3",
"vitest": "^1.1.0",
"@firesystem/test-suite": "0.1.0"
},
"tsup": {
"entry": [
"src/index.ts",
"provider.ts"
],
"format": [
"cjs",
"esm"
],
"dts": true,
"sourcemap": true,
"clean": true,
"tsconfig": "tsconfig.build.json"
},
"peerDependencies": {
"@workspace-fs/core": "^1.0.8"
},
"peerDependenciesMeta": {
"@workspace-fs/core": {
"optional": true
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"test": "vitest --run",
"test:watch": "vitest",
"lint": "eslint src",
"typecheck": "tsc --noEmit -p tsconfig.typecheck.json"
}
}