-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.48 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.48 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
{
"name": "prettier-plugin-ssh-config",
"version": "0.3.0",
"description": "A `prettier` plugin for ssh config",
"license": "MIT",
"author": {
"name": "Eric Chen",
"email": "airkro@qq.com"
},
"keywords": [
"config",
"prettier",
"prettier-plugin",
"ssh",
"ssh-config"
],
"homepage": "https://www.npmjs.com/package/prettier-plugin-ssh-config",
"repository": {
"type": "git",
"url": "https://github.com/nice-move/prettier-plugin-ssh-config.git"
},
"bugs": {
"url": "https://github.com/nice-move/prettier-plugin-ssh-config/issues"
},
"main": "lib/index.cjs",
"files": [
"lib"
],
"type": "commonjs",
"scripts": {
"lint:staged": "nice-move lint staged",
"prepare": "nice-move git hooks",
"prepublishOnly": "pnpm run lint:staged && pnpm test",
"snapshot": "ava --fail-fast -u -w",
"test": "ava --fail-fast"
},
"dependencies": {
"ssh-config": "^5.0.3"
},
"devDependencies": {
"@bring-it/cli": "^0.10.0",
"@bring-it/npm": "^0.6.1",
"@nice-move/all-in-base": "^0.4.33",
"ava": "^6.4.0",
"eslint": "^9.29.0",
"garou": "^0.9.11",
"prettier": "^3.5.3",
"typescript": "~5.8.3"
},
"peerDependencies": {
"prettier": "^3.5.3"
},
"engines": {
"node": ">=18.12.0",
"pnpm": "^10.12.1"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"packageManager": "pnpm@10.12.1",
"prettier": "@nice-move/prettier-config"
}