forked from loderunner/agent-remote
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.59 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.59 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
{
"name": "agent-remote",
"version": "0.0.1",
"description": "Remote execution tools for AI agents",
"license": "Apache-2.0",
"author": "Charles Francoise",
"homepage": "https://github.com/loderunner/agent-remote#readme",
"repository": {
"type": "git",
"url": "https://github.com/loderunner/agent-remote.git"
},
"bugs": {
"url": "https://github.com/loderunner/agent-remote/issues"
},
"keywords": [
"ai",
"agents",
"remote",
"ssh",
"mcp",
"model-context-protocol",
"automation",
"anthropic",
"claude"
],
"private": true,
"type": "module",
"scripts": {
"lint": "prettier --check . && eslint --max-warnings=0",
"lint:fix": "prettier --write . && eslint --fix --max-warnings=0",
"test": "pnpm -r test",
"test:watch": "pnpm -r test:watch",
"test:e2e": "pnpm -r test:e2e",
"build": "pnpm -r build",
"build:watch": "pnpm -r build:watch",
"clean": "pnpm -r clean",
"clean:all": "git clean -fdx"
},
"packageManager": "pnpm@10.19.0",
"devDependencies": {
"@eslint/js": "^9.38.0",
"@types/node": "catalog:",
"@vitest/eslint-plugin": "^1.3.24",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest-extended": "^3.0.1",
"eslint-plugin-jsdoc": "^61.1.8",
"eslint": "^9.38.0",
"globals": "^16.4.0",
"jest-extended": "catalog:",
"prettier": "^3.6.2",
"tslib": "catalog:",
"tsx": "catalog:",
"typescript-eslint": "^8.46.2",
"typescript": "catalog:",
"vitest-mock-extended": "catalog:",
"vitest": "catalog:"
}
}