ctheme 0.1.0

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.
Files changed (3) hide show
  1. package/README.md +155 -0
  2. package/bin/ctheme.js +1819 -0
  3. package/package.json +34 -0
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "ctheme",
3
+ "version": "0.1.0",
4
+ "description": "Theme manager for making terminals look better with colors, fonts, and live profile switching",
5
+ "license": "MIT",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/arjunkshah/ctheme.git"
9
+ },
10
+ "homepage": "https://github.com/arjunkshah/ctheme#readme",
11
+ "bugs": {
12
+ "url": "https://github.com/arjunkshah/ctheme/issues"
13
+ },
14
+ "keywords": [
15
+ "theme",
16
+ "terminal",
17
+ "cli",
18
+ "apple-terminal",
19
+ "fonts"
20
+ ],
21
+ "files": [
22
+ "bin",
23
+ "README.md"
24
+ ],
25
+ "bin": {
26
+ "ctheme": "bin/ctheme.js"
27
+ },
28
+ "scripts": {
29
+ "test": "node ./bin/ctheme.js --help"
30
+ },
31
+ "engines": {
32
+ "node": ">=18"
33
+ }
34
+ }