-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.12 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
{
"name": "poke-gate",
"version": "0.3.7",
"description": "Expose your machine to your Poke AI assistant via MCP tunnel",
"type": "module",
"bin": {
"poke-gate": "bin/poke-gate.js"
},
"scripts": {
"start": "node src/app.js",
"test": "node --test",
"test:watch": "node --test --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint:md": "remark . --quiet --frail",
"format": "prettier --write \"{src,bin}/**/*.js\"",
"format:md": "remark . --output --quiet"
},
"keywords": [
"poke",
"mcp",
"tunnel",
"shell",
"terminal",
"ai",
"cli",
"remote",
"os"
],
"author": "",
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"poke": "^0.4.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"eslint": "^9.39.1",
"globals": "^16.5.0",
"prettier": "^3.6.2",
"remark-cli": "^12.0.1",
"remark-lint-list-item-indent": "^4.0.1",
"remark-parse": "^11.0.0",
"remark-preset-lint-consistent": "^6.0.1",
"remark-preset-lint-recommended": "^7.0.1",
"remark-stringify": "^11.0.0"
}
}