-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.1 KB
/
package.json
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
{
"name": "auto-terminal-profile",
"version": "4.0.0",
"description": "Automatically switch macOS Terminal profile when system dark / light mode changes",
"keywords": [
"macos",
"terminal",
"light mode",
"dark mode",
"profile"
],
"repository": "github:patrik-csak/auto-terminal-profile",
"funding": "https://buymeacoffee.com/patrikcsak",
"license": "MIT",
"author": "Patrik Csak <[email protected]> (https://patrikcsak.com)",
"type": "module",
"bin": "./cli.js",
"scripts": {
"format": "xo --fix && sort-package-json",
"postinstall": "cd dark-mode-notify && make build",
"test": "xo && sort-package-json --check"
},
"dependencies": {
"commander": "^12.0.0",
"conf": "^12.0.0",
"dark-mode": "^4.0.0",
"env-paths": "^3.0.0",
"execa": "^8.0.1",
"pupa": "^3.1.0",
"read-package-up": "^11.0.0",
"run-applescript": "^7.0.0",
"terminal-profile": "^2.0.0",
"untildify": "^5.0.0"
},
"devDependencies": {
"sort-package-json": "^2.7.0",
"xo": "^0.57.0"
},
"engines": {
"node": ">=18 <=20"
},
"os": [
"darwin"
]
}