You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
63 lines
1.5 KiB
63 lines
1.5 KiB
{
|
|
"name": "vite-plugin-eslint",
|
|
"version": "1.8.1",
|
|
"description": "ESLint plugin for vite.",
|
|
"author": "Xiang Gao",
|
|
"license": "MIT",
|
|
"main": "./dist/index.js",
|
|
"module": "./dist/index.mjs",
|
|
"types": "./dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"dev": "npm run build -- --watch ./src",
|
|
"lint": "eslint ./src --ext .js,.ts",
|
|
"build": "tsup",
|
|
"prepublishOnly": "npm run build",
|
|
"release": "standard-version"
|
|
},
|
|
"keywords": [
|
|
"eslint",
|
|
"vite-plugin"
|
|
],
|
|
"homepage": "https://github.com/gxmari007/vite-plugin-eslint",
|
|
"repository": "git+https://github.com:gxmari007/vite-plugin-eslint.git",
|
|
"config": {
|
|
"commitizen": {
|
|
"path": "cz-conventional-changelog"
|
|
}
|
|
},
|
|
"publishConfig": {
|
|
"registry": "https://registry.npmjs.org/"
|
|
},
|
|
"dependencies": {
|
|
"@rollup/pluginutils": "^4.2.1",
|
|
"@types/eslint": "^8.4.5",
|
|
"rollup": "^2.77.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^18.0.6",
|
|
"@typescript-eslint/eslint-plugin": "^5.30.7",
|
|
"@typescript-eslint/parser": "^5.30.7",
|
|
"cz-conventional-changelog": "^3.3.0",
|
|
"eslint": "^8.21.0",
|
|
"eslint-config-prettier": "^8.5.0",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"prettier": "^2.7.1",
|
|
"standard-version": "^9.5.0",
|
|
"tsup": "^6.2.1",
|
|
"typescript": "^4.7.4",
|
|
"vite": "^3.0.8"
|
|
},
|
|
"peerDependencies": {
|
|
"eslint": ">=7",
|
|
"vite": ">=2"
|
|
}
|
|
}
|
|
|