-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
95 lines (95 loc) · 2.93 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
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@bunkerch/modernssh",
"version": "1.0.0",
"description": "A modern, typed SSH client and server library for Node.js",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md"
],
"sideEffects": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"engines": {
"node": ">=20"
},
"scripts": {
"clean": "node --eval \"require('node:fs').rmSync('dist', { recursive: true, force: true })\"",
"test": "pnpm run build && pnpm run docs:api:check && bun --smol test --max-concurrency=1 --dots ./__tests__/*/*",
"build": "pnpm run clean && tsc",
"dev": "tsc --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check .",
"docs:api": "pnpm run build && node scripts/generate-api-reference.mjs",
"docs:api:check": "node scripts/generate-api-reference.mjs --check",
"docs:dev": "pnpm run docs:api && next dev --hostname 0.0.0.0 --port 5173",
"docs:build": "pnpm run docs:api && next build",
"docs:preview": "next start --hostname 0.0.0.0 --port 5173",
"prepare": "husky",
"prepack": "pnpm run build"
},
"lint-staged": {
"*.{js,ts,json,md,yaml,yml}": "prettier --write"
},
"author": "Manaf",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/bunkerch/node-ssh.git"
},
"keywords": [
"ssh",
"typescript",
"client",
"server"
],
"devDependencies": {
"@eslint/js": "^9.38.0",
"@stylistic/eslint-plugin": "^5.5.0",
"@tailwindcss/postcss": "4.3.2",
"@types/mdx": "^2.0.14",
"@types/node": "^20.0.0",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"bun": "^1.3.14",
"eslint": "^9.38.0",
"fumadocs-core": "16.11.4",
"fumadocs-mdx": "15.1.1",
"fumadocs-ui": "16.11.4",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"next": "16.2.10",
"postcss": "^8.5.19",
"prettier": "^3.6.2",
"react": "19.2.7",
"react-dom": "19.2.7",
"tailwindcss": "4.3.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2",
"zod": "^4.4.3"
},
"dependencies": {
"@noble/curves": "^2.2.0",
"@noble/hashes": "^2.2.0",
"@noble/post-quantum": "^0.6.1",
"asn1js": "^3.0.10",
"bcrypt-pbkdf": "^1.0.2",
"koffi": "3.1.1",
"pako": "^3.0.1",
"tweetnacl": "^1.0.3"
},
"packageManager": "pnpm@10.19.0"
}