onlineornot 0.0.0-e1bc318
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +21 -0
- package/README.md +7 -0
- package/bin/onlineornot.js +94 -0
- package/dist/cli.js +25217 -0
- package/package.json +62 -0
package/package.json
ADDED
|
@@ -0,0 +1,62 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "onlineornot",
|
|
3
|
+
"version": "0.0.0-e1bc318",
|
|
4
|
+
"description": "Command-line interface for OnlineOrNot",
|
|
5
|
+
"keywords": [
|
|
6
|
+
"uptime monitoring"
|
|
7
|
+
],
|
|
8
|
+
"homepage": "https://github.com/onlineornot/onlineornot#readme",
|
|
9
|
+
"bugs": {
|
|
10
|
+
"url": "https://github.com/onlineornot/onlineornot/issues"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "https://github.com/onlineornot/onlineornot.git"
|
|
15
|
+
},
|
|
16
|
+
"license": "MIT",
|
|
17
|
+
"author": "Max Rozen <max@onlineornot.com>",
|
|
18
|
+
"main": "dist/cli.js",
|
|
19
|
+
"bin": {
|
|
20
|
+
"onlineornot": "./bin/onlineornot.js"
|
|
21
|
+
},
|
|
22
|
+
"files": [
|
|
23
|
+
"dist"
|
|
24
|
+
],
|
|
25
|
+
"scripts": {
|
|
26
|
+
"build": "npm run clean && npm run bundle",
|
|
27
|
+
"bundle": "node -r esbuild-register scripts/bundle.ts",
|
|
28
|
+
"check": "run-p check:* --aggregate-output --continue-on-error",
|
|
29
|
+
"check:format": "prettier . --check --ignore-unknown",
|
|
30
|
+
"check:types": "tsc --noEmit",
|
|
31
|
+
"clean": "rimraf dist",
|
|
32
|
+
"prepublishOnly": "SOURCEMAPS=false npm run build",
|
|
33
|
+
"prettify": "prettier . --write --ignore-unknown",
|
|
34
|
+
"start": "npm run bundle && cross-env NODE_OPTIONS=--enable-source-maps ./bin/onlineornot.js"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"chalk": "^5.2.0",
|
|
38
|
+
"cli-table3": "^0.6.3",
|
|
39
|
+
"esbuild": "^0.17.7",
|
|
40
|
+
"supports-color": "^9.3.1",
|
|
41
|
+
"undici": "^5.18.0",
|
|
42
|
+
"update-check": "^1.5.4",
|
|
43
|
+
"yargs": "^17.6.2"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@changesets/changelog-github": "^0.4.8",
|
|
47
|
+
"@changesets/cli": "^2.26.0",
|
|
48
|
+
"@types/node": "^18.13.0",
|
|
49
|
+
"@types/yargs": "^17.0.22",
|
|
50
|
+
"cross-env": "^7.0.3",
|
|
51
|
+
"esbuild-register": "^3.4.2",
|
|
52
|
+
"npm-run-all": "^4.1.5",
|
|
53
|
+
"prettier": "^2.8.4",
|
|
54
|
+
"prettier-plugin-packagejson": "^2.4.2",
|
|
55
|
+
"rimraf": "^4.1.2",
|
|
56
|
+
"run-p": "^0.0.0",
|
|
57
|
+
"typescript": "^4.9.5"
|
|
58
|
+
},
|
|
59
|
+
"engines": {
|
|
60
|
+
"node": ">=16.13.0"
|
|
61
|
+
}
|
|
62
|
+
}
|