smartsystem/package.json
2024-05-29 14:16:47 +02:00

64 lines
1.6 KiB
JSON

{
"name": "@push.rocks/smartsystem",
"version": "3.0.1",
"description": "A TypeScript library for interacting with the system it's running on, including environment, network, and hardware information.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"type": "module",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
},
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartsystem.git"
},
"keywords": [
"TypeScript",
"system information",
"environment variables",
"network",
"hardware info",
"OS interaction",
"module loading",
"async",
"cross-platform"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartsystem/issues"
},
"homepage": "https://code.foss.global/push.rocks/smartsystem",
"dependencies": {
"@pushrocks/lik": "^6.0.0",
"@pushrocks/smartenv": "^5.0.2",
"@pushrocks/smartnetwork": "^3.0.0",
"@pushrocks/smartpromise": "^3.1.7",
"systeminformation": "^5.12.1"
},
"devDependencies": {
"@gitzone/tsbuild": "^2.1.63",
"@gitzone/tstest": "^1.0.72",
"@pushrocks/tapbundle": "^5.0.4",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0"
},
"private": false,
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"browserslist": [
"last 1 chrome versions"
]
}