2019-06-20 14:01:51 +02:00
|
|
|
{
|
2023-07-10 02:42:56 +02:00
|
|
|
"name": "@push.rocks/smartdaemon",
|
2026-05-01 15:24:08 +00:00
|
|
|
"version": "2.1.1",
|
2019-06-20 14:01:51 +02:00
|
|
|
"private": false,
|
2024-04-14 17:27:46 +02:00
|
|
|
"description": "Start scripts as long running daemons and manage them.",
|
2021-01-30 00:41:40 +00:00
|
|
|
"main": "dist_ts/index.js",
|
|
|
|
|
"typings": "dist_ts/index.d.ts",
|
2026-05-01 15:24:08 +00:00
|
|
|
"type": "module",
|
|
|
|
|
"author": "Task Venture Capital GmbH <hello@task.vc>",
|
2019-06-20 14:01:51 +02:00
|
|
|
"license": "MIT",
|
|
|
|
|
"scripts": {
|
2026-05-01 15:24:08 +00:00
|
|
|
"test": "tstest test/ --verbose --timeout 60",
|
|
|
|
|
"build": "tsbuild --web",
|
|
|
|
|
"format": "gitzone format",
|
2022-10-19 19:27:42 +02:00
|
|
|
"buildDocs": "tsdoc"
|
2019-06-20 14:01:51 +02:00
|
|
|
},
|
2026-05-01 15:24:08 +00:00
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "https://code.foss.global/push.rocks/smartdaemon.git"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [
|
|
|
|
|
"daemon",
|
|
|
|
|
"service management",
|
|
|
|
|
"Linux systemd",
|
|
|
|
|
"process management",
|
|
|
|
|
"Node.js",
|
|
|
|
|
"system administration",
|
|
|
|
|
"background services"
|
|
|
|
|
],
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://gitlab.com/push.rocks/smartdaemon/issues"
|
|
|
|
|
},
|
|
|
|
|
"homepage": "https://code.foss.global/push.rocks/smartdaemon",
|
2019-06-20 14:01:51 +02:00
|
|
|
"devDependencies": {
|
2026-05-01 15:24:08 +00:00
|
|
|
"@git.zone/tsbuild": "^4.4.0",
|
|
|
|
|
"@git.zone/tsrun": "^2.0.3",
|
|
|
|
|
"@git.zone/tstest": "^3.6.3",
|
|
|
|
|
"@types/node": "^25.6.0"
|
2019-06-20 14:01:51 +02:00
|
|
|
},
|
2019-08-28 11:55:14 +02:00
|
|
|
"dependencies": {
|
2026-05-01 15:24:08 +00:00
|
|
|
"@push.rocks/lik": "^6.4.1",
|
|
|
|
|
"@push.rocks/smartfm": "^2.2.2",
|
|
|
|
|
"@push.rocks/smartfs": "^1.5.1",
|
|
|
|
|
"@push.rocks/smartlog": "^3.2.2",
|
|
|
|
|
"@push.rocks/smartlog-destination-local": "^9.0.2",
|
2025-08-29 13:31:57 +00:00
|
|
|
"@push.rocks/smartpath": "^6.0.0",
|
2026-05-01 15:24:08 +00:00
|
|
|
"@push.rocks/smartshell": "^3.3.8",
|
|
|
|
|
"@push.rocks/smartsystem": "^3.0.8"
|
2019-08-28 11:55:14 +02:00
|
|
|
},
|
2019-06-20 14:01:51 +02:00
|
|
|
"files": [
|
2021-01-30 00:41:40 +00:00
|
|
|
"ts/**/*",
|
|
|
|
|
"ts_web/**/*",
|
|
|
|
|
"dist/**/*",
|
|
|
|
|
"dist_*/**/*",
|
|
|
|
|
"dist_ts/**/*",
|
|
|
|
|
"dist_ts_web/**/*",
|
|
|
|
|
"assets/**/*",
|
2019-06-20 14:01:51 +02:00
|
|
|
"cli.js",
|
2026-05-01 15:24:08 +00:00
|
|
|
".smartconfig.json",
|
|
|
|
|
"license",
|
2019-06-20 14:01:51 +02:00
|
|
|
"npmextra.json",
|
|
|
|
|
"readme.md"
|
2021-01-30 00:41:40 +00:00
|
|
|
],
|
|
|
|
|
"browserslist": [
|
|
|
|
|
"last 1 chrome versions"
|
2022-10-19 19:27:42 +02:00
|
|
|
],
|
2026-05-01 15:24:08 +00:00
|
|
|
"packageManager": "pnpm@10.28.2"
|
2025-03-03 06:32:05 +00:00
|
|
|
}
|