-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.68 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.68 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"name": "system-mac",
"version": "1.0.0",
"description": "SYSTEM - Control your Mac from anywhere via AI.",
"type": "module",
"bin": {
"system": "./dist/cli/setup.js"
},
"scripts": {
"setup": "node dist/cli/setup.js",
"start": "node dist/cli/start.js",
"check": "node dist/cli/check.js",
"dev": "node dist/bridge/http-server.js",
"build": "tsc",
"postinstall": "npm run build || true",
"lint": "eslint src/",
"lint:fix": "eslint src/ --fix",
"format": "prettier --write src/",
"format:check": "prettier --check src/",
"test": "vitest",
"test:run": "vitest run",
"prepare": "husky"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"chalk": "^5.6.2",
"enquirer": "^2.4.1",
"express": "^4.18.2",
"open": "^10.0.3",
"zod": "^3.22.4"
},
"devDependencies": {
"@eslint/js": "^9.39.2",
"@types/express": "^4.17.21",
"@types/node": "^20.10.0",
"@vitest/coverage-v8": "^4.0.16",
"eslint": "^9.39.2",
"eslint-config-prettier": "^10.1.8",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"prettier": "^3.7.4",
"tsx": "^4.7.0",
"typescript": "^5.3.3",
"typescript-eslint": "^8.52.0",
"vitest": "^4.0.16"
},
"keywords": [
"mac",
"automation",
"ai",
"agent",
"applescript",
"raycast",
"remote-control"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ygwyg/system"
},
"homepage": "https://github.com/ygwyg/system#readme",
"bugs": {
"url": "https://github.com/ygwyg/system/issues"
},
"lint-staged": {
"src/**/*.ts": [
"eslint --fix",
"prettier --write"
]
}
}