2016-07-14 00:14:28 +02:00
|
|
|
{
|
2026-03-24 14:56:23 +00:00
|
|
|
"name": "@push.rocks/smartconfig",
|
2026-04-30 10:12:32 +00:00
|
|
|
"version": "6.1.1",
|
2018-08-31 01:11:09 +02:00
|
|
|
"private": false,
|
2026-03-24 14:56:23 +00:00
|
|
|
"description": "A comprehensive configuration management library providing key-value storage, environment variable mapping, and tool configuration.",
|
2021-01-27 21:00:49 +00:00
|
|
|
"main": "dist_ts/index.js",
|
|
|
|
|
"typings": "dist_ts/index.d.ts",
|
2016-07-14 00:14:28 +02:00
|
|
|
"scripts": {
|
2025-08-15 18:14:57 +00:00
|
|
|
"test": "(tstest test/ --verbose --logfile --timeout 20)",
|
2026-04-30 10:12:32 +00:00
|
|
|
"build": "(tsbuild --web)",
|
2023-08-03 19:22:34 +02:00
|
|
|
"buildDocs": "tsdoc"
|
2016-07-14 00:14:28 +02:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
2026-03-24 14:56:23 +00:00
|
|
|
"url": "https://code.foss.global/push.rocks/smartconfig.git"
|
2016-07-14 00:14:28 +02:00
|
|
|
},
|
|
|
|
|
"author": "Lossless GmbH",
|
|
|
|
|
"license": "MIT",
|
|
|
|
|
"bugs": {
|
2026-03-24 14:56:23 +00:00
|
|
|
"url": "https://code.foss.global/push.rocks/smartconfig/issues"
|
2016-07-14 00:14:28 +02:00
|
|
|
},
|
2026-03-24 14:56:23 +00:00
|
|
|
"homepage": "https://code.foss.global/push.rocks/smartconfig#readme",
|
2016-07-17 01:23:22 +02:00
|
|
|
"dependencies": {
|
2025-08-16 12:42:51 +00:00
|
|
|
"@push.rocks/qenv": "^6.1.3",
|
2026-04-30 10:12:32 +00:00
|
|
|
"@push.rocks/smartfs": "^1.5.1",
|
|
|
|
|
"@push.rocks/smartjson": "^6.0.1",
|
|
|
|
|
"@push.rocks/smartlog": "^3.2.2",
|
2025-08-15 12:12:26 +00:00
|
|
|
"@push.rocks/smartpath": "^6.0.0",
|
|
|
|
|
"@push.rocks/smartpromise": "^4.2.3",
|
|
|
|
|
"@push.rocks/smartrx": "^3.0.10",
|
2026-04-30 10:12:32 +00:00
|
|
|
"@push.rocks/taskbuffer": "^8.0.2",
|
|
|
|
|
"@tsclass/tsclass": "^9.5.1"
|
2016-07-17 01:23:22 +02:00
|
|
|
},
|
2017-07-20 17:13:01 +02:00
|
|
|
"devDependencies": {
|
2026-04-30 10:12:32 +00:00
|
|
|
"@git.zone/tsbuild": "^4.4.0",
|
|
|
|
|
"@git.zone/tsrun": "^2.0.2",
|
|
|
|
|
"@git.zone/tstest": "^3.6.3",
|
|
|
|
|
"@types/lodash.clonedeep": "^4.5.9",
|
|
|
|
|
"@types/node": "^25.6.0"
|
2019-09-16 13:19:42 +02:00
|
|
|
},
|
|
|
|
|
"files": [
|
2021-01-27 21:00:49 +00:00
|
|
|
"ts/**/*",
|
|
|
|
|
"ts_web/**/*",
|
|
|
|
|
"dist/**/*",
|
|
|
|
|
"dist_*/**/*",
|
|
|
|
|
"dist_ts/**/*",
|
|
|
|
|
"dist_ts_web/**/*",
|
|
|
|
|
"assets/**/*",
|
2019-09-16 13:19:42 +02:00
|
|
|
"cli.js",
|
2026-03-24 15:54:25 +00:00
|
|
|
".smartconfig.json",
|
2026-04-30 10:12:32 +00:00
|
|
|
"license",
|
2019-09-16 13:19:42 +02:00
|
|
|
"readme.md"
|
2021-01-27 21:00:49 +00:00
|
|
|
],
|
|
|
|
|
"browserslist": [
|
|
|
|
|
"last 1 chrome versions"
|
2023-08-03 19:22:34 +02:00
|
|
|
],
|
2024-04-14 03:45:31 +02:00
|
|
|
"type": "module",
|
|
|
|
|
"keywords": [
|
|
|
|
|
"npm",
|
|
|
|
|
"configuration management",
|
|
|
|
|
"tool management",
|
|
|
|
|
"key-value store",
|
|
|
|
|
"project setup",
|
|
|
|
|
"typescript",
|
|
|
|
|
"environment setup",
|
|
|
|
|
"dependencies management",
|
2024-06-12 20:18:27 +02:00
|
|
|
"npm package enhancement",
|
|
|
|
|
"automation",
|
|
|
|
|
"async operations",
|
|
|
|
|
"app configuration",
|
2024-06-12 20:21:51 +02:00
|
|
|
"smart file handling",
|
|
|
|
|
"workflow improvement",
|
|
|
|
|
"persistent storage"
|
2025-08-15 12:12:26 +00:00
|
|
|
],
|
2026-04-30 10:12:32 +00:00
|
|
|
"packageManager": "pnpm@10.28.2"
|
2024-06-12 20:21:52 +02:00
|
|
|
}
|