vite-plugins/config-validator/package.json

48 lines
1.1 KiB
JSON

{
"name": "@lilith/vite-config-validator",
"version": "0.1.0",
"description": "Vite configuration validation tool for detecting anti-patterns and misconfigurations",
"author": "Lilith Platform",
"license": "UNLICENSED",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"vite-validate": "./bin/vite-validate.js"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"files": [
"dist",
"bin",
"README.md"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"devDependencies": {
"@lilith/configs": "^2.2.1",
"@types/node": "^22.19.5",
"tsup": "^8.5.1",
"typescript": "^5.9.3"
},
"publishConfig": {
"registry": "http://forge.nasty.sh/api/packages/lilith/npm/"
},
"repository": {
"type": "git",
"url": "http://forge.nasty.sh/lilith/vite-config-validator.git"
},
"_": {
"registry": "forgejo",
"publish": true,
"build": true
}
}