smartsystem/package.json

64 lines
1.6 KiB
JSON
Raw Permalink Normal View History

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