-
Notifications
You must be signed in to change notification settings - Fork 280
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 961 Bytes
/
package.json
File metadata and controls
52 lines (52 loc) · 961 Bytes
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
{
"name": "openwhip",
"version": "1.1.0",
"description": "Whip Claude into shape",
"license": "MIT",
"main": "main.js",
"bin": {
"openwhip": "bin/openwhip.js",
"badclaude": "bin/openwhip.js"
},
"os": [
"darwin",
"linux",
"win32"
],
"engines": {
"node": ">=18.0.0"
},
"keywords": [
"electron",
"tray",
"overlay",
"cli"
],
"repository": {
"type": "git",
"url": "git+https://github.com/GitFrog1111/OpenWhip.git"
},
"bugs": {
"url": "https://github.com/GitFrog1111/OpenWhip/issues"
},
"homepage": "https://github.com/GitFrog1111/OpenWhip#readme",
"files": [
"main.js",
"preload.js",
"overlay.html",
"sounds",
"icon",
"bin/openwhip.js",
"bin/badclaude.js",
"README.md"
],
"scripts": {
"start": "electron .",
"dev": "electron .",
"pack": "npm pack"
},
"dependencies": {
"electron": "^33.0.0",
"koffi": "^2.9.0"
}
}