-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
49 lines (49 loc) · 1.16 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
46
47
48
49
{
"name": "suchibot",
"version": "1.9.2",
"description": "A cross-platform AutoHotKey-like thing with TypeScript as its scripting language",
"main": "index.js",
"bin": "index.js",
"scripts": {
"build": "rimraf dist && tsc && cp src/libnut.js dist/",
"start": "node ./index.js",
"test": "vitest"
},
"keywords": [
"macro",
"automatic",
"autohotkey",
"keyboard",
"mouse",
"hotkey",
"hot",
"auto",
"automated"
],
"author": "Lily Skye <me@suchipi.com>",
"repository": "suchipi/suchibot",
"license": "MIT",
"dependencies": {
"@suchipi/defer": "^1.0.0",
"a-mimir": "^1.0.1",
"debug": "^4.3.5",
"esbuild-register": "^3.5.0",
"kleur": "^4.1.5",
"mitt": "^3.0.1",
"pretty-print-error": "^1.1.2",
"uiohook-napi": "^1.5.4"
},
"optionalDependencies": {
"@suchipi/libnut-darwin": "^2.7.1",
"@suchipi/libnut-linux": "^2.7.1",
"@suchipi/libnut-win32": "^2.7.1",
"@suchipi/node-mac-permissions": "2.2.1"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/node": "^20.14.2",
"rimraf": "^5.0.7",
"typescript": "^5.4.5",
"vitest": "^1.6.0"
}
}