@astrojs/check
Version:
Type checking and diagnostics for Astro projects
48 lines • 1.18 kB
JSON
{
"name": "@astrojs/check",
"description": "Type checking and diagnostics for Astro projects",
"version": "0.9.4",
"author": "withastro",
"license": "MIT",
"homepage": "https://github.com/withastro/language-tools/tree/main/packages/astro-check",
"repository": {
"type": "git",
"url": "https://github.com/withastro/language-tools",
"directory": "packages/astro-check"
},
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"astro-check": "./dist/bin.js"
},
"files": [
"bin",
"dist/**/*.js",
"dist/**/*.d.ts"
],
"dependencies": {
"@astrojs/language-server": "^2.15.0",
"chokidar": "^4.0.1",
"kleur": "^4.1.5",
"yargs": "^17.7.2"
},
"devDependencies": {
"@types/node": "^18.17.8",
"@types/yargs": "^17.0.24",
"@types/chai": "^4.3.5",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"tsx": "^3.12.7"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "mocha --timeout 50000 --require tsx test/**/*.test.ts",
"test:match": "pnpm run test -g"
}
}