webdetector/package.json

56 lines
1.3 KiB
JSON
Raw Normal View History

2018-12-18 16:58:06 +00:00
{
2024-03-30 20:49:15 +00:00
"name": "@push.rocks/webdetector",
2023-06-11 14:09:07 +00:00
"version": "2.0.3",
2018-12-18 16:58:06 +00:00
"private": false,
2024-04-14 16:39:02 +00:00
"description": "A library to detect web environments and PWA installation status within a browser.",
2023-06-10 11:46:58 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2018-12-18 16:58:06 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2023-06-10 11:46:58 +00:00
"test": "(tstest test/)",
2018-12-18 16:58:06 +00:00
"build": "(tsbuild --web)",
2023-06-10 11:46:58 +00:00
"format": "(gitzone format)",
"buildDocs": "tsdoc"
2018-12-18 16:58:06 +00:00
},
"devDependencies": {
2023-06-10 11:46:58 +00:00
"@gitzone/tsbuild": "^2.1.66",
"@gitzone/tsrun": "^1.2.42",
"@gitzone/tstest": "^1.0.74",
"@pushrocks/tapbundle": "^5.0.4",
"@types/node": "^20.2.6"
2018-12-18 16:58:06 +00:00
},
2018-12-19 16:17:25 +00:00
"dependencies": {
2023-06-10 11:46:58 +00:00
"@pushrocks/smartdelay": "^3.0.1",
2023-06-10 11:47:29 +00:00
"@pushrocks/smartrx": "^3.0.1"
2018-12-19 16:17:25 +00:00
},
"browserslist": [
"last 1 version"
2023-06-10 11:46:58 +00:00
],
"type": "module",
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2024-04-14 16:39:02 +00:00
],
"keywords": [
"web environment detection",
"PWA status",
"online status check",
"platform detection",
"network status",
"browser detection"
2024-05-29 12:17:32 +00:00
],
"homepage": "https://code.foss.global/push.rocks/webdetector",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/webdetector.git"
}
2024-03-30 20:49:15 +00:00
}