-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.29 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.29 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
{
"name": "@kud/ding-cli",
"version": "1.0.2",
"type": "module",
"description": "A tiny macOS alarm/timer CLI — set a relative or absolute time, get a notification and a sound when it fires",
"license": "MIT",
"author": "Erwann Mest <m@kud.io>",
"repository": {
"type": "git",
"url": "git+https://github.com/kud/ding-cli.git"
},
"homepage": "https://kud.io/projects/ding-cli",
"keywords": [
"timer",
"alarm",
"notification",
"macos",
"cli"
],
"bin": {
"ding": "dist/bin.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "tsx src/index.ts",
"build": "tsup src/bin.ts src/index.ts --format esm --dts",
"build:watch": "tsup src/bin.ts src/index.ts --format esm --dts --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build",
"lint": "eslint .",
"format": "prettier --write ."
},
"dependencies": {
"@inkjs/ui": "2.0.0",
"chalk": "5.6.2",
"citty": "0.2.2",
"ink": "7.1.0",
"node-notifier": "10.0.1",
"react": "19.2.7"
},
"devDependencies": {
"@types/node": "26.0.0",
"@types/node-notifier": "8.0.5",
"@types/react": "19.2.17",
"tsup": "8.5.1",
"tsx": "4.22.4",
"typescript": "6.0.3"
},
"engines": {
"node": ">=20.0.0"
}
}