Files
detector/package.json

56 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2021-04-12 19:00:08 +00:00
{
2022-07-16 18:15:23 +02:00
"name": "@uptime.link/detector",
2025-05-26 12:57:15 +00:00
"version": "2.1.2",
2021-04-12 19:00:08 +00:00
"private": false,
"description": "a detector for answering network questions locally. It does not rely on any online services.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-07-16 18:15:23 +02:00
"type": "module",
2021-04-12 19:00:08 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/ --verbose)",
2022-07-16 18:15:23 +02:00
"build": "(tsbuild --web --allowimplicitany)",
"buildDocs": "tsdoc"
2021-04-12 19:00:08 +00:00
},
"devDependencies": {
"@git.zone/tsbuild": "^2.1.63",
"@git.zone/tsbundle": "^2.0.5",
"@git.zone/tsrun": "^1.3.3",
"@git.zone/tstest": "^2.2.5",
"@types/node": "^22.15.21",
2021-04-12 19:00:08 +00:00
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.15.0"
},
2021-04-13 08:30:33 +00:00
"dependencies": {
"@push.rocks/smartnetwork": "^4.0.2",
"@push.rocks/smarturl": "^3.1.0"
2021-04-13 08:30:33 +00:00
},
2021-04-12 19:00:08 +00:00
"browserslist": [
"last 1 chrome versions"
],
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"repository": {
"type": "git",
"url": "https://gitlab.com/uptime.link/detector.git"
},
"bugs": {
"url": "https://gitlab.com/uptime.link/detector/issues"
},
"homepage": "https://gitlab.com/uptime.link/detector#readme",
"pnpm": {
"overrides": {}
}
2025-05-26 12:57:15 +00:00
}