-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
121 lines (121 loc) · 3.54 KB
/
package.json
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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"author": "ndonfris",
"license": "MIT",
"name": "fish-lsp",
"version": "1.0.8",
"description": "LSP implementation for fish/fish-shell",
"keywords": [
"lsp",
"fish",
"fish-shell",
"language-server-protocol",
"language-server"
],
"homepage": "https://fish-lsp.dev",
"repository": {
"type": "git",
"url": "https://github.com/ndonfris/fish-lsp.git"
},
"bin": "./bin/fish-lsp",
"man": "./docs/man/fish-lsp.1",
"directories": {
"man": "./docs/man/fish-lsp.1",
"bin": "./bin/fish-lsp"
},
"scripts": {
"prepare": "husky",
"setup": "run-s sh:build-time sh:build-wasm",
"preinstall": "yarn install --ignore-scripts --no-progress",
"postinstall": "run-s setup compile sh:relink sh:build-completions",
"compile": "tsc -b",
"watch": "tsc -b -w",
"sh:build-completions": "fish ./scripts/build-completions.fish",
"sh:build-time": "fish ./scripts/build-time.fish",
"sh:build-wasm": "fish ./scripts/build-fish-wasm.fish",
"sh:relink": "fish ./scripts/relink-locally.fish",
"clean:all": "rimraf out *.tsbuildinfo node_modules tree-sitter-fish.wasm logs.txt",
"clean": "rimraf out node_modules",
"test": "env -i HOME=$HOME PATH=$PATH NODE_ENV=test jest",
"refactor": "knip",
"lint:check": "eslint . --ext .ts",
"lint:fix": "eslint . --ext .ts --fix ",
"lint:check-fix": "eslint . --ext .ts --fix-dry-run",
"generate-man-page": "mkdir -p ./docs/man && cat docs/MAN_FILE.md | npx marked-man --date \"$(date +'%e %B %+4Y')\" --manual fish-lsp --section 1 --name fish-lsp > ./docs/man/fish-lsp.1"
},
"enabledApiProposals": [
"inlineCompletions"
],
"lint-staged": {
"**/*.ts": [
"eslint --fix"
]
},
"eslintIgnore": [
"!.eslintrc.cjs"
],
"contributes": {
"commands": [
{
"command": "fish-lsp.createTheme",
"title": "create a new theme"
},
{
"command": "fish-lsp.executeBuffer",
"title": "execute the buffer"
},
{
"command": "fish-lsp.execute",
"title": "execute the buffer"
},
{
"command": "fish-lsp.executeLine",
"title": "execute the line"
}
]
},
"dependencies": {
"@esdmr/tree-sitter-fish": "^3.5.2-0",
"colors": "^1.4.0",
"commander": "^12.0.0",
"deepmerge": "^4.3.1",
"marked-man": "^1.3.5",
"tree-sitter": "^0.21.0",
"tsc": "^2.0.4",
"typescript": "^5.4.3",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-protocol": "3.17.5",
"vscode-languageserver-textdocument": "1.0.11",
"vscode-uri": "^3.0.8",
"web-tree-sitter": "^0.22.2",
"zod": "^3.23.6"
},
"devDependencies": {
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@tsconfig/node-lts": "^20.1.3",
"@types/chai": "^4.3.14",
"@types/jest": "^29.5.12",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.0.1",
"@typescript-eslint/parser": "^7.4.0",
"all-contributors-cli": "^6.26.1",
"chai": "^5.1.0",
"eslint": "^8.0.1",
"eslint-config-love": "^44.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"fast-glob": "^3.3.2",
"husky": "^9.0.11",
"jest": "^29.7.0",
"knip": "^5.7.0",
"lint-staged": "^15.2.7",
"npm-run-all": "^4.1.5",
"pinst": "^3.0.0",
"rimraf": "^5.0.5",
"tree-sitter-cli": "^0.22.2",
"tree-sitter-fish": "https://github.com/ram02z/tree-sitter-fish",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2"
}
}