Files
smartexpose/package.json
T

74 lines
1.8 KiB
JSON
Raw Normal View History

2024-04-22 13:13:00 +02:00
{
"name": "@push.rocks/smartexpose",
2024-04-26 13:51:46 +02:00
"version": "1.0.6",
2024-04-22 13:13:00 +02:00
"private": false,
"description": "A TypeScript package for temporarily exposing files through WebDAV-backed public URLs.",
"exports": {
".": "./dist_ts/index.js"
},
2024-04-22 13:13:00 +02:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"author": "Task Venture Capital GmbH <hello@task.vc>",
2024-04-22 13:13:00 +02:00
"license": "MIT",
"scripts": {
"test": "tstest test/",
"build": "tsbuild --web",
"buildDocs": "tsdoc"
2024-04-22 13:13:00 +02:00
},
"devDependencies": {
"@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"
2024-04-22 13:13:00 +02:00
},
"dependencies": {
2024-04-24 18:02:21 +02:00
"@push.rocks/smartdelay": "^3.0.5",
"@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"
2024-04-22 13:13:00 +02:00
},
"repository": {
"type": "git",
2024-05-29 14:13:03 +02:00
"url": "https://code.foss.global/push.rocks/smartexpose.git"
2024-04-22 13:13:00 +02:00
},
"bugs": {
"url": "https://code.foss.global/push.rocks/smartexpose/issues"
},
2024-05-29 14:13:03 +02:00
"homepage": "https://code.foss.global/push.rocks/smartexpose",
2024-04-22 13:13:00 +02:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
".smartconfig.json",
"license",
2024-04-22 13:13:00 +02:00
"npmextra.json",
"readme.md"
],
"keywords": [
"file exposure",
"temporary URLs",
"WebDAV",
"public files",
"TypeScript",
"task scheduling",
"smartfile",
"file sharing",
"automation",
"node.js"
2024-04-22 13:13:00 +02:00
]
}