Files
discord-clone/node_modules/vite-plugin-checker/package.json
2023-01-03 09:29:04 -06:00

109 lines
2.7 KiB
JSON

{
"name": "vite-plugin-checker",
"version": "0.5.3",
"description": "Vite plugin that runs TypeScript type checker on a separate process.",
"types": "./dist/esm/main.d.ts",
"main": "./dist/cjs/main.js",
"type": "module",
"exports": {
".": {
"types": "./dist/esm/main.d.ts",
"import": "./dist/esm/main.js",
"require": "./dist/cjs/main.js"
}
},
"engines": {
"node": ">=14.16"
},
"files": [
"dist",
"!dist/checkers/vueTsc/typescript-vue-tsc"
],
"repository": {
"type": "git",
"url": "git+https://github.com/fi3ework/vite-plugin-checker.git"
},
"keywords": [
"vite",
"vite-plugin",
"typescript"
],
"author": "fi3ework <fi3ework@gmail.com>",
"license": "MIT",
"bugs": "https://github.com/fi3ework/vite-plugin-checker/issues",
"homepage": "https://github.com/fi3ework/vite-plugin-checker",
"dependencies": {
"@babel/code-frame": "^7.12.13",
"ansi-escapes": "^4.3.0",
"chalk": "^4.1.1",
"chokidar": "^3.5.1",
"commander": "^8.0.0",
"fast-glob": "^3.2.7",
"lodash.debounce": "^4.0.8",
"lodash.pick": "^4.4.0",
"npm-run-path": "^4.0.1",
"strip-ansi": "^6.0.0",
"tiny-invariant": "^1.1.0",
"vscode-languageclient": "^7.0.0",
"vscode-languageserver": "^7.0.0",
"vscode-languageserver-textdocument": "^1.0.1",
"vscode-uri": "^3.0.2"
},
"peerDependencies": {
"eslint": ">=7",
"meow": "^9.0.0",
"stylelint": ">=13",
"typescript": "*",
"vite": ">=2.0.0",
"vls": "*",
"vti": "*",
"optionator": "^0.9.1"
},
"peerDependenciesMeta": {
"eslint": {
"optional": true
},
"meow": {
"optional": true
},
"stylelint": {
"optional": true
},
"typescript": {
"optional": true
},
"vls": {
"optional": true
},
"vti": {
"optional": true
},
"optionator": {
"optional": true
}
},
"devDependencies": {
"@types/eslint": "^7.2.14",
"@types/lodash.debounce": "^4.0.6",
"@types/lodash.pick": "^4.4.6",
"@volar/vue-typescript": "^0.33.0",
"esbuild": "^0.14.27",
"meow": "^9.0.0",
"npm-run-all": "^4.1.5",
"optionator": "^0.9.1",
"stylelint": "^14.0.0",
"tsup": "^6.2.2",
"typescript": "~4.5.5",
"vls": "^0.7.6",
"vti": "^0.1.7",
"vue-tsc": "1.0.14"
},
"scripts": {
"dev": "tsup --watch",
"clean": "rimraf dist",
"build": "tsup && zx ../../scripts/patchCjs.mjs",
"build:test": "tsup --sourcemap inline",
"changelog": "conventional-changelog -p angular -i ../../CHANGELOG.md -s --commit-path ../../ --lerna-package vite-plugin-checker",
"release": "zx ../../scripts/release.mjs"
}
}