smartdaemon/package.json

62 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2019-06-20 12:01:51 +00:00
{
2023-07-10 00:42:56 +00:00
"name": "@push.rocks/smartdaemon",
2024-04-19 11:54:29 +00:00
"version": "2.0.6",
2019-06-20 12:01:51 +00:00
"private": false,
2024-04-14 15:27:46 +00: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",
2019-06-20 12:01:51 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2021-01-30 00:45:47 +00:00
"test": "(tstest test/ --web)",
2022-10-19 17:35:06 +00:00
"build": "(tsbuild --web --allowimplicitany)",
2022-10-19 17:27:42 +00:00
"buildDocs": "tsdoc"
2019-06-20 12:01:51 +00:00
},
"devDependencies": {
2024-04-19 11:54:20 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.12.7"
2019-06-20 12:01:51 +00:00
},
2019-08-28 09:55:14 +00:00
"dependencies": {
2024-04-19 11:54:20 +00:00
"@push.rocks/lik": "^6.0.15",
"@push.rocks/smartfile": "^11.0.14",
2023-07-25 16:57:38 +00:00
"@push.rocks/smartfm": "^2.0.4",
2024-04-19 11:54:20 +00:00
"@push.rocks/smartlog": "^3.0.3",
2023-07-25 16:57:38 +00:00
"@push.rocks/smartlog-destination-local": "^9.0.1",
2024-04-19 11:54:20 +00:00
"@push.rocks/smartpath": "^5.0.14",
"@push.rocks/smartshell": "^3.0.5",
2023-07-25 16:57:38 +00:00
"@push.rocks/smartsystem": "^3.0.1"
2019-08-28 09:55:14 +00:00
},
2019-06-20 12:01:51 +00:00
"files": [
2021-01-30 00:41:40 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-06-20 12:01:51 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2021-01-30 00:41:40 +00:00
],
"browserslist": [
"last 1 chrome versions"
2022-10-19 17:27:42 +00:00
],
2024-04-14 15:27:46 +00:00
"type": "module",
"keywords": [
"daemon",
"service management",
"Linux systemd",
"process management",
"Node.js",
"system administration",
"background services"
2024-05-29 12:12:23 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartdaemon",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartdaemon.git"
}
}