feat(core): add provider defaults, strengthen WebDAV validation, and modernize tests and package metadata

This commit is contained in:
2026-05-01 22:31:47 +00:00
parent 157f97cbd7
commit 623788ae25
14 changed files with 8148 additions and 4210 deletions
+35 -22
View File
@@ -2,37 +2,36 @@
"name": "@push.rocks/smartexpose",
"version": "1.0.6",
"private": false,
"description": "a package to expose things to the internet",
"description": "A TypeScript package for temporarily exposing files through WebDAV-backed public URLs.",
"exports": {
".": "./dist_ts/index.js"
},
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH",
"author": "Task Venture Capital GmbH <hello@task.vc>",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --web)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "(tsdoc)"
"test": "tstest test/",
"build": "tsbuild --web",
"buildDocs": "tsdoc"
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.25",
"@git.zone/tsbundle": "^2.0.5",
"@git.zone/tsrun": "^1.2.46",
"@git.zone/tstest": "^1.0.44",
"@push.rocks/qenv": "^6.0.5",
"@push.rocks/tapbundle": "^5.0.15",
"@types/node": "^20.8.7"
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsdoc": "^2.0.3",
"@git.zone/tstest": "^3.6.3",
"@push.rocks/qenv": "^6.1.4",
"@types/node": "^25.6.0"
},
"dependencies": {
"@push.rocks/smartdelay": "^3.0.5",
"@push.rocks/smartexpect": "^1.0.21",
"@push.rocks/smartfile": "^11.0.14",
"@push.rocks/smartformat": "^1.0.3",
"@push.rocks/smartjson": "^5.0.19",
"@push.rocks/smartpath": "^5.0.18",
"@push.rocks/smartrequest": "^2.0.22",
"@push.rocks/smartunique": "^3.0.8",
"@push.rocks/smartwebdav": "^1.1.2",
"@push.rocks/taskbuffer": "^3.1.7"
"@push.rocks/smartfile": "^13.1.3",
"@push.rocks/smartformat": "^1.1.0",
"@push.rocks/smartpath": "^6.0.0",
"@push.rocks/smartrequest": "^5.0.3",
"@push.rocks/smartunique": "^3.0.9",
"@push.rocks/smartwebdav": "^1.1.3",
"@push.rocks/taskbuffer": "^8.0.2"
},
"repository": {
"type": "git",
@@ -54,7 +53,21 @@
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
"npmextra.json",
"readme.md"
],
"keywords": [
"file exposure",
"temporary URLs",
"WebDAV",
"public files",
"TypeScript",
"task scheduling",
"smartfile",
"file sharing",
"automation",
"node.js"
]
}
}