webdetector/package.json

43 lines
969 B
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,
"description": "detect different environments within the 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"
2018-12-19 16:17:25 +00:00
]
2024-03-30 20:49:15 +00:00
}