-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.64 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.64 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "uptimekit",
"version": "1.3.1",
"description": "A cross-platform CLI for monitoring website/server health with a TUI dashboard.",
"main": "dist/index.js",
"type": "module",
"bin": {
"uptimekit": "dist/index.js",
"upkit": "dist/index.js"
},
"files": [
"dist",
"LICENSE",
"CONTRIBUTING.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/abhixdd/UptimeKit-CLI.git"
},
"bugs": {
"url": "https://github.com/abhixdd/UptimeKit-CLI/issues"
},
"homepage": "https://github.com/abhixdd/UptimeKit-CLI",
"scripts": {
"build": "babel src -d dist && node -e \"const fs = require('fs'); const path = require('path'); const distAssets = path.join('dist', 'assets'); if (!fs.existsSync(distAssets)) fs.mkdirSync(distAssets, { recursive: true }); fs.copyFileSync(path.join('src', 'assets', 'icon.png'), path.join('dist', 'assets', 'icon.png'));\"",
"postbuild": "node -e \"const fs = require('fs'); const path = require('path'); const file = path.join('dist', 'index.js'); const content = fs.readFileSync(file, 'utf8'); if (!content.startsWith('#!')) { fs.writeFileSync(file, '#!/usr/bin/env node\\n' + content); }\"",
"prestart": "npm run build",
"start": "node dist/index.js",
"prepublishOnly": "npm run build",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --no-colors",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --no-colors",
"test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage --no-colors",
"test:update-snapshots": "node --experimental-vm-modules node_modules/jest/bin/jest.js --updateSnapshot --no-colors",
"format": "prettier --write \"src/**/*.js\" \"tests/**/*.js\" jest.config.js",
"changeset": "changeset",
"version-packages": "changeset version",
"release": "npm run build && changeset publish"
},
"keywords": [
"cli",
"monitoring",
"uptime",
"tui",
"ink",
"nodejs",
"uptimekit"
],
"author": "abhixdd",
"license": "MIT",
"dependencies": {
"axios": "^1.6.0",
"better-sqlite3": "^12.4.5",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"date-fns": "^4.1.0",
"ink": "^6.5.1",
"mkdirp": "^3.0.1",
"node-notifier": "^10.0.1",
"ora": "^9.0.0",
"ping": "^1.0.0",
"react": "^19.2.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@babel/cli": "^7.28.3",
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-react": "^7.28.5",
"@changesets/cli": "^2.29.8",
"ink-testing-library": "^4.0.0",
"jest": "^30.2.0",
"prettier": "^3.7.4"
}
}