-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.84 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.84 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
{
"name": "svelte-proxy-lsp",
"version": "1.0.2",
"description": "A standalone LSP proxy service combining Svelte and TypeScript language services",
"main": "dist/server.js",
"bin": {
"svelte-proxy-lsp": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/server.js",
"start:dev": "tsx src/server.ts",
"clean": "rm -rf dist",
"test": "jest",
"test:watch": "jest --watch",
"test:integration": "jest --config jest.integration.config.js",
"prepublishOnly": "npm run clean && npm run build && npm test",
"postpublish": "echo 'Published successfully!'",
"pack:local": "npm pack"
},
"keywords": [
"svelte",
"typescript",
"lsp",
"language-server",
"proxy",
"language-server-protocol",
"svelte-language-server",
"typescript-language-server"
],
"author": "Jake Starkey <jakestarkey@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/datstarkey/svelte-proxy-lsp.git"
},
"bugs": {
"url": "https://github.com/datstarkey/svelte-proxy-lsp/issues"
},
"homepage": "https://github.com/datstarkey/svelte-proxy-lsp#readme",
"engines": {
"node": ">=16.0.0"
},
"files": [
"dist/**/*",
"README.md",
"LICENSE",
"package.json"
],
"dependencies": {
"svelte-language-server": "^0.16.14",
"typescript-language-server": "^4.3.3",
"typescript-svelte-plugin": "^0.3.40",
"vscode-jsonrpc": "^8.2.0",
"vscode-languageclient": "^9.0.1",
"vscode-languageserver": "^9.0.1",
"vscode-languageserver-textdocument": "^1.0.11"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.14.12",
"jest": "^29.7.0",
"ts-jest": "^29.1.2",
"tsx": "^4.7.1",
"typescript": "^5.5.4",
"vscode-languageserver-protocol": "^3.17.5"
}
}