@ricsam/linkfs
Version:
Rewrites filesystem paths
45 lines (44 loc) • 1.11 kB
JSON
{
"name": "@ricsam/linkfs",
"version": "2.0.8",
"description": "Rewrites filesystem paths",
"main": "dist/cjs/index.js",
"module": "dist/mjs/index.js",
"exports": {
".": {
"import": "./dist/mjs/index.js",
"require": "./dist/cjs/index.js",
"types": "./types/index.d.ts"
}
},
"types": "./types/index.d.ts",
"keywords": [
"fs",
"file",
"file system",
"redirect",
"rewrite",
"link",
"mount",
"linkfs"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ricsam/linkfs.git"
},
"dependencies": {},
"devDependencies": {
"memfs": "4.14.0",
"typescript": "5.7.2",
"@types/bun": "latest",
"@changesets/cli": "^2.27.10",
"prettier": "^3.4.1"
},
"scripts": {
"build": "tsc -p tsconfig.build.json && bun build src/index.ts --outdir ./dist/mjs --target browser --format esm --external memfs && bun build src/index.ts --outdir ./dist/cjs --target browser --format cjs --external memfs && ./patch-dist-dirs.sh",
"test": "bun test"
}
}