Files
ry.kazcloud.dev/node_modules/@astrojs/language-server/package.json

78 lines
2.1 KiB
JSON

{
"name": "@astrojs/language-server",
"version": "2.15.4",
"author": "withastro",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/withastro/language-tools",
"directory": "packages/language-server"
},
"type": "commonjs",
"main": "dist/index.js",
"files": [
"bin",
"dist/**/*.js",
"dist/**/*.d.ts",
"types/**/*.d.ts"
],
"bin": {
"astro-ls": "./bin/nodeServer.js"
},
"dependencies": {
"@astrojs/compiler": "^2.10.3",
"@astrojs/yaml2ts": "^0.2.2",
"@jridgewell/sourcemap-codec": "^1.4.15",
"@volar/kit": "~2.4.7",
"@volar/language-core": "~2.4.7",
"@volar/language-server": "~2.4.7",
"@volar/language-service": "~2.4.7",
"fast-glob": "^3.2.12",
"muggle-string": "^0.4.1",
"volar-service-css": "0.0.62",
"volar-service-emmet": "0.0.62",
"volar-service-html": "0.0.62",
"volar-service-prettier": "0.0.62",
"volar-service-typescript": "0.0.62",
"volar-service-typescript-twoslash-queries": "0.0.62",
"volar-service-yaml": "0.0.62",
"vscode-html-languageservice": "^5.2.0",
"vscode-uri": "^3.0.8"
},
"devDependencies": {
"@astrojs/svelte": "^5.0.3",
"@astrojs/vue": "^4.0.8",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"@types/node": "^18.17.8",
"@volar/test-utils": "~2.4.7",
"@volar/typescript": "~2.4.7",
"astro": "^4.14.0",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"svelte": "^4.2.10",
"tsx": "^3.12.7",
"typescript": "^5.5.4",
"vscode-languageserver-protocol": "^3.17.5",
"vscode-languageserver-textdocument": "^1.0.11"
},
"peerDependencies": {
"prettier": "^3.0.0",
"prettier-plugin-astro": ">=0.11.0"
},
"peerDependenciesMeta": {
"prettier": {
"optional": true
},
"prettier-plugin-astro": {
"optional": true
}
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"sync-fixture": "pnpm --dir ./test/fixture sync",
"test": "pnpm run sync-fixture && mocha --timeout 10000 --require tsx --require test/takedown.ts test/misc/init.test.ts test/**/*.test.ts",
"test:match": "pnpm run test -g"
}
}