-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.36 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.36 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@flamerged/sshshot",
"version": "0.0.0-managed-by-semantic-release",
"description": "Screenshot relay for SSH workflows — take a screenshot locally, it auto-uploads to your remote box and pastes the remote path back to your clipboard. macOS · Linux (X11 & Wayland) · Windows · WSL.",
"main": "dist/index.js",
"bin": "dist/index.js",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"typecheck": "tsc --noEmit",
"dev": "tsc && node dist/index.js",
"format": "prettier --write \"src/**/*.{ts,json}\" \"test/**/*.{ts,json}\" \".github/**/*.{yml,yaml,md}\" \"*.{json,md,yml,yaml}\"",
"format:check": "prettier --check \"src/**/*.{ts,json}\" \"test/**/*.{ts,json}\" \".github/**/*.{yml,yaml,md}\" \"*.{json,md,yml,yaml}\"",
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "eslint --fix \"src/**/*.ts\" \"test/**/*.ts\"",
"test": "vitest run",
"test:watch": "vitest",
"prepare": "husky",
"prepublishOnly": "npm run build"
},
"keywords": [
"screenshot",
"screenshot-tool",
"clipboard",
"ssh",
"ssh-tunnel",
"remote",
"remote-development",
"ai-agents",
"claude-code",
"codex",
"aider",
"dev-tools",
"cli",
"macos",
"linux",
"wayland",
"wsl",
"pngpaste"
],
"author": "Mersad Ajanovic",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/flamerged/sshshot.git"
},
"bugs": {
"url": "https://github.com/flamerged/sshshot/issues"
},
"homepage": "https://github.com/flamerged/sshshot#readme",
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=20"
},
"packageManager": "yarn@4.10.3",
"devDependencies": {
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/node": "^25.0.10",
"@typescript-eslint/eslint-plugin": "^8.33.1",
"@typescript-eslint/parser": "^8.33.1",
"eslint": "^9.36.0",
"eslint-import-resolver-typescript": "^3.7.0",
"eslint-plugin-import": "^2.31.0",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"prettier": "^3.4.2",
"semantic-release": "^24.2.7",
"typescript": "^5.9.3",
"vitest": "^2.1.8"
},
"dependencies": {
"enquirer": "^2.4.1"
}
}