Files
nullresolve/package.json
T

73 lines
1.9 KiB
JSON
Raw Normal View History

2024-12-26 00:29:13 +01:00
{
"name": "@losslessone_private/nullresolve",
2024-12-26 00:30:12 +01:00
"version": "1.0.31",
"description": "The nullresolve project is a private service designed to handle requests that would otherwise remain unserved, providing appropriate feedback mechanisms within the servzone architecture.",
2024-12-26 00:29:13 +01:00
"type": "module",
"author": "Lossless GmbH",
"license": "UNLICENSED",
"scripts": {
"test": "(tstest test/)",
"start": "(node cli.js)",
"startTs": "(node cli.ts.js)",
"build": "(tsbuild --web --allowimplicitany)",
2026-04-29 11:07:46 +00:00
"watch": "(tswatch service)",
"build:docker": "tsdocker build --verbose",
"release:docker": "tsdocker push --verbose"
2024-12-26 00:29:13 +01:00
},
"devDependencies": {
2026-04-29 11:07:46 +00:00
"@git.zone/tsbuild": "^4.4.0",
"@git.zone/tsdocker": "^2.2.4",
"@git.zone/tsrun": "^2.0.2",
"@git.zone/tstest": "^3.6.3",
"@git.zone/tswatch": "^3.3.2",
"@types/node": "^25.6.0"
2024-12-26 00:29:13 +01:00
},
"dependencies": {
2026-04-29 11:07:46 +00:00
"@api.global/typedserver": "^8.4.6",
"@push.rocks/projectinfo": "^5.1.0",
"@push.rocks/smartpath": "^6.0.0",
2024-12-26 00:29:13 +01:00
"@push.rocks/smartstatus": "^1.1.1"
},
"private": true,
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
2026-04-29 11:07:46 +00:00
".smartconfig.json",
2024-12-26 00:29:13 +01:00
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
],
"repository": {
"type": "git",
2026-04-29 11:07:46 +00:00
"url": "git+https://code.foss.global/serve.zone/nullresolve.git"
2024-12-26 00:29:13 +01:00
},
"bugs": {
2026-04-29 11:07:46 +00:00
"url": "https://code.foss.global/serve.zone/nullresolve/issues"
2024-12-26 00:29:13 +01:00
},
2026-04-29 11:07:46 +00:00
"homepage": "https://code.foss.global/serve.zone/nullresolve#readme",
"keywords": [
"nullresolve",
"service",
"request-handling",
"error-management",
"network-ecosystem",
"typescript",
"server",
"feedback",
"private-package",
"npm",
"logging",
"monitoring",
"graceful-shutdown",
"custom-routes",
"error-handling"
]
2024-12-26 00:30:12 +01:00
}