@terbiumos/tfs
Version:
The drop in Filer replacement you have been waiting for. Completely Typed and Built with TypeScript
64 lines (63 loc) • 1.46 kB
JSON
{
"name": "@terbiumos/tfs",
"displayName": "TFS",
"version": "1.0.14-beta",
"description": "The drop in Filer replacement you have been waiting for. Completely Typed and Built with TypeScript",
"type": "module",
"types": "/src/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/TerbiumOS/TFS"
},
"scripts": {
"dev": "rspack dev",
"build": "rspack build --configLoader=native",
"check": "biome check . --write",
"fmt": "biome format --write .",
"test": "cd ./demo && npm run test",
"test:install": "cd ./demo && npm i && npm run test",
"ci": "cd ./demo && npm i && cd ../ && npm run build",
"types": "npx tsc --declaration --emitDeclarationOnly && npm run fmt",
"pub": "npm run build && npm run types && npm publish --access public"
},
"keywords": [
"fs",
"node",
"file",
"filesystem",
"browser",
"browser-fs",
"opfs"
],
"files": [
"dist",
"lib",
"src",
"README.md",
"LICENSE",
"package.json"
],
"exports": {
".": {
"import": "./lib/index.mjs",
"types": "./lib/index.d.ts"
},
"./browser": {
"import": "./dist/node/tfs.js",
"types": "./lib/index.d.ts"
}
},
"author": "TerbiumOS Development",
"license": "Apache-2.0",
"packageManager": "pnpm@10.18.3",
"devDependencies": {
"@biomejs/biome": "^2.2.6",
"@rspack/cli": "^1.5.8",
"@rspack/core": "^1.5.8",
"typescript": "^5.9.3"
},
"dependencies": {
"buffer": "^6.0.3",
"minimatch": "^10.0.3"
}
}