smartdaemon/package.json

48 lines
1.2 KiB
JSON
Raw Normal View History

2019-06-20 12:01:51 +00:00
{
2023-07-10 00:42:56 +00:00
"name": "@push.rocks/smartdaemon",
2022-10-19 17:42:07 +00:00
"version": "2.0.3",
2019-06-20 12:01:51 +00:00
"private": false,
"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": {
2021-01-30 00:41:40 +00:00
"@gitzone/tsbuild": "^2.1.25",
2022-10-19 17:42:07 +00:00
"@gitzone/tsrun": "^1.2.38",
2021-01-30 00:41:40 +00:00
"@gitzone/tstest": "^1.0.52",
2022-10-19 17:27:42 +00:00
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^18.11.2"
2019-06-20 12:01:51 +00:00
},
2019-08-28 09:55:14 +00:00
"dependencies": {
2022-10-19 17:27:42 +00:00
"@pushrocks/lik": "^6.0.0",
"@pushrocks/smartfile": "^10.0.5",
2019-09-05 09:15:17 +00:00
"@pushrocks/smartfm": "^2.0.4",
2022-10-19 17:27:42 +00:00
"@pushrocks/smartlog": "^3.0.1",
2021-01-30 00:41:40 +00:00
"@pushrocks/smartlog-destination-local": "^8.0.8",
2022-10-19 17:27:42 +00:00
"@pushrocks/smartpath": "^5.0.5",
2021-01-30 00:41:40 +00:00
"@pushrocks/smartshell": "^2.0.26",
2022-10-19 17:27:42 +00:00
"@pushrocks/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
],
"type": "module"
2023-07-10 00:42:56 +00:00
}