Files
smartsystem/package.json

66 lines
1.8 KiB
JSON
Raw Normal View History

2016-10-06 19:28:00 +02:00
{
2024-03-30 21:48:54 +01:00
"name": "@push.rocks/smartsystem",
2025-08-29 12:33:51 +00:00
"version": "3.0.2",
2024-04-14 18:27:46 +02:00
"description": "A TypeScript library for interacting with the system it's running on, including environment, network, and hardware information.",
2021-08-12 23:35:39 +02:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-07-28 22:07:52 +02:00
"type": "module",
2016-10-06 19:28:00 +02:00
"scripts": {
"test": "(tstest test/ --verbose --logfile --timeout 60)",
2022-07-28 22:14:24 +02:00
"build": "(tsbuild --web --allowimplicitany)",
2022-07-28 22:07:52 +02:00
"buildDocs": "tsdoc"
2016-10-06 19:28:00 +02:00
},
"repository": {
"type": "git",
2024-05-29 14:16:47 +02:00
"url": "https://code.foss.global/push.rocks/smartsystem.git"
2016-10-06 19:28:00 +02:00
},
"keywords": [
"TypeScript",
2024-04-14 18:27:46 +02:00
"system information",
"environment variables",
"network",
"hardware info",
"OS interaction",
"module loading",
"async",
"cross-platform"
],
2016-10-06 19:28:00 +02:00
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartsystem/issues"
},
2024-05-29 14:16:47 +02:00
"homepage": "https://code.foss.global/push.rocks/smartsystem",
2016-10-06 23:00:29 +02:00
"dependencies": {
"@push.rocks/lik": "^6.0.0",
"@push.rocks/smartenv": "^5.0.2",
"@push.rocks/smartnetwork": "^3.0.0",
"@push.rocks/smartpromise": "^4.0.2",
2022-07-28 22:07:52 +02:00
"systeminformation": "^5.12.1"
2016-10-12 01:41:30 +02:00
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.63",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^1.0.72",
2021-08-12 23:35:39 +02:00
"tslint": "^6.1.3",
2019-08-22 01:05:21 +02:00
"tslint-config-prettier": "^1.18.0"
},
"private": false,
"files": [
2021-08-12 23:35:39 +02:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
2019-08-22 01:05:21 +02:00
"cli.js",
"npmextra.json",
"readme.md"
2021-08-12 23:35:39 +02:00
],
"browserslist": [
"last 1 chrome versions"
],
"packageManager": "pnpm@10.14.0+sha512.ad27a79641b49c3e481a16a805baa71817a04bbe06a38d17e60e2eaee83f6a146c6a688125f5792e48dd5ba30e7da52a5cda4c3992b9ccf333f9ce223af84748"
}