Files
smartfs/package.json
T

62 lines
1.5 KiB
JSON
Raw Normal View History

2025-11-21 18:36:31 +00:00
{
"name": "@push.rocks/smartfs",
2026-04-30 08:44:40 +00:00
"version": "1.5.1",
2025-11-21 18:36:31 +00:00
"private": false,
"description": "A cross-platform, extensible filesystem module with pluggable providers and Rust-backed durability.",
2025-11-21 18:36:31 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --verbose --logfile --timeout 120)",
"build": "(tsbuild --web && tsrust)",
2025-11-21 18:36:31 +00:00
"buildDocs": "(tsdoc)"
},
"devDependencies": {
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsbundle": "^2.10.0",
"@git.zone/tsrun": "^2.0.2",
"@git.zone/tsrust": "^1.3.2",
"@git.zone/tstest": "^3.6.3",
"@types/node": "^25.6.0"
2025-11-21 18:36:31 +00:00
},
"packageManager": "pnpm@10.28.2",
2025-11-21 18:36:31 +00:00
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartfs.git"
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smartfs/issues"
},
"homepage": "https://code.foss.global/push.rocks/smartfs#readme",
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"dist_rust/**/*",
2025-11-21 18:36:31 +00:00
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2025-11-21 18:36:31 +00:00
"readme.md"
],
"dependencies": {
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartrust": "^1.4.0"
},
"keywords": [
"filesystem",
"fs",
"typescript",
"rust",
"streams",
"transactions",
"watching",
"storage"
]
2025-11-21 18:36:31 +00:00
}