-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.34 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
{
"name": "meta-x",
"version": "3.0.0",
"main": "src/launcher.mjs",
"author": "[email protected]",
"license": "MIT",
"private": false,
"type": "module",
"scripts": {
"start": "cross-env NODE_ENV=production node bin/runner.mjs",
"launch": "./bin/launch",
"typecheck:runner": "tsc --noEmit",
"build:runner": "esbuild src/runner.ts --bundle --platform=node --format=esm --outfile=bin/runner.mjs --packages=external",
"build": "yarn typecheck:runner && yarn build:runner",
"docs:build": "node scripts/build-docs.mjs",
"postinstall": "yarn build",
"tail-logs": "tail -f /tmp/skhd_$USER.out.log",
"tail-errors": "tail -f /tmp/skhd_$USER.err.log"
},
"devDependencies": {
"@types/lodash": "^4.17.7",
"@types/node": "^20.14.12",
"@types/node-notifier": "^8.0.5",
"cross-env": "^7.0.2",
"esbuild": "^0.23.0",
"prettier": "^3.3.3",
"showdown": "^1.9.1",
"typescript": "^5.5.4"
},
"dependencies": {
"@nut-tree/nut-js": "^3.1.2",
"axios": "^1.6.7",
"clipboardy": "^4.0.0",
"cocoa-dialog": "^3.0.0",
"dotenv": "^16.4.5",
"execa": "^9.3.0",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2",
"node-notifier": "^10.0.1",
"open": "^9.1.0",
"ora": "^8.0.1",
"prompts": "^2.3.2",
"run-applescript": "^7.0.0",
"user-startup": "^0.2.2"
}
}