keycomfort 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.
@@ -0,0 +1,18 @@
1
+ apps:
2
+ login:
3
+ - com.apple.loginwindow
4
+ terminal:
5
+ - com.apple.Terminal
6
+ - com.googlecode.iterm2
7
+ - org.alacritty
8
+ atom:
9
+ - com.github.atom
10
+ - dev.pulsar-edit.pulsar
11
+ vscode:
12
+ - com.microsoft.VSCode
13
+ - com.vscodium
14
+ eclipse:
15
+ - org.eclipse.platform.ide
16
+ sonicpi:
17
+ - net.sonic-pi.app
18
+
package/package.json ADDED
@@ -0,0 +1,41 @@
1
+ {
2
+ "name": "keycomfort",
3
+ "version": "0.1.0",
4
+ "description": "Comfortable keyboard remaps for Karabiner/AutoHotKey",
5
+ "files": [
6
+ "dist",
7
+ "defaults.yml",
8
+ "mac/defaults.yml"
9
+ ],
10
+ "bin": {
11
+ "keycomfort": "./dist/bundle.js"
12
+ },
13
+ "scripts": {
14
+ "test": "echo noop",
15
+ "build": "rollup -c",
16
+ "clean": "rm -rf ./dist",
17
+ "dist": "npm run clean; NODE_ENV=production npm run build"
18
+ },
19
+ "repository": {
20
+ "type": "git",
21
+ "url": "git+https://github.com/amekusa/keycomfort.git"
22
+ },
23
+ "keywords": [
24
+ "keyboard",
25
+ "remap",
26
+ "karabiner",
27
+ "mac",
28
+ "macos",
29
+ "qol",
30
+ "numpad"
31
+ ],
32
+ "author": "Satoshi Soma (https://amekusa.com)",
33
+ "license": "MIT",
34
+ "devDependencies": {
35
+ "@amekusa/util.js": "^1.1.0",
36
+ "@rollup/plugin-commonjs": "^25.0.7",
37
+ "@rollup/plugin-node-resolve": "^15.2.3",
38
+ "karabinerge": "^1.6.0",
39
+ "yaml": "^2.4.1"
40
+ }
41
+ }