-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 1.96 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 1.96 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
{
"name": "skm-node",
"version": "2.0.0",
"type": "module",
"description": "Modern SSH Key Manager with Ed25519 support and interactive CLI",
"main": "./dist/index.js",
"types": "./dist/types/index.d.ts",
"bin": {
"skm": "./dist/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\"",
"prepare": "husky install",
"prepublishOnly": "npm run build"
},
"keywords": [
"ssh",
"key",
"manager",
"ed25519",
"security",
"cli"
],
"author": "Liees",
"license": "WTFPL",
"repository": {
"type": "git",
"url": "https://github.com/liees/skm-node.git"
},
"bugs": {
"url": "https://github.com/liees/skm-node/issues"
},
"homepage": "https://github.com/liees/skm-node#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"chalk": "^5.3.0",
"commander": "^12.0.0",
"execa": "^8.0.1",
"inquirer": "^9.2.14",
"ora": "^8.0.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/inquirer": "^9.0.7",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.4",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.ts": [
"eslint --fix",
"prettier --write"
]
}
}