-
-
Notifications
You must be signed in to change notification settings - Fork 3.3k
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 1.91 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 1.91 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
{
"name": "@astrojs/language-server",
"version": "2.16.6",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/withastro/astro.git",
"directory": "packages/language-tools/language-server"
},
"type": "commonjs",
"main": "dist/index.js",
"files": [
"bin",
"dist/**/*.js",
"dist/**/*.d.ts",
"types/**/*.d.ts"
],
"bin": {
"astro-ls": "./bin/nodeServer.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "astro-scripts test \"**/*.test.ts\" --teardown-test ./test/misc/teardown.ts --tsx true --setup ./test/setup.js",
"test:match": "pnpm run test --match"
},
"dependencies": {
"@astrojs/compiler": "^2.13.1",
"@astrojs/yaml2ts": "^0.2.3",
"@jridgewell/sourcemap-codec": "^1.5.5",
"@volar/kit": "~2.4.28",
"@volar/language-core": "~2.4.28",
"@volar/language-server": "~2.4.28",
"@volar/language-service": "~2.4.28",
"muggle-string": "^0.4.1",
"tinyglobby": "^0.2.15",
"volar-service-css": "0.0.70",
"volar-service-emmet": "0.0.70",
"volar-service-html": "0.0.70",
"volar-service-prettier": "0.0.70",
"volar-service-typescript": "0.0.70",
"volar-service-typescript-twoslash-queries": "0.0.70",
"volar-service-yaml": "0.0.70",
"vscode-html-languageservice": "^5.6.2",
"vscode-uri": "^3.1.0"
},
"devDependencies": {
"@types/node": "^20.9.0",
"@volar/test-utils": "~2.4.28",
"@volar/typescript": "~2.4.28",
"astro-scripts": "workspace:*",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-languageserver-textdocument": "^1.0.12"
},
"peerDependencies": {
"prettier": "^3.0.0",
"prettier-plugin-astro": ">=0.11.0"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
},
"prettier-plugin-astro": {
"optional": true
}
}
}