-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.36 KB
/
package.json
File metadata and controls
55 lines (55 loc) · 1.36 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": "@openwhispr/cli",
"version": "0.1.0",
"description": "OpenWhispr unified CLI — operate against the local desktop app or the cloud API from your shell",
"type": "module",
"bin": {
"openwhispr": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"clean": "node -e \"require('node:fs').rmSync('dist',{recursive:true,force:true})\"",
"build": "npm run clean && tsc",
"lint": "eslint . && tsc --noEmit",
"format": "eslint --fix . && prettier --write .",
"format:check": "eslint . && prettier --check .",
"prepublishOnly": "npm run lint && npm run build"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"commander": "^12.1.0"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/node": "^20.19.0",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1",
"typescript": "^5.8.0",
"typescript-eslint": "^8.54.0"
},
"engines": {
"node": ">=20"
},
"license": "MIT",
"author": "OpenWhispr",
"homepage": "https://openwhispr.com/cli/install",
"repository": {
"type": "git",
"url": "git+https://github.com/OpenWhispr/openwhispr-cli.git"
},
"bugs": {
"url": "https://github.com/OpenWhispr/openwhispr-cli/issues"
},
"keywords": [
"openwhispr",
"cli",
"transcription",
"dictation",
"notes"
]
}