lovable-tagger
Version:
Vite plugin for component tagging
54 lines (53 loc) • 1.41 kB
JSON
{
"name": "lovable-tagger",
"version": "1.1.9",
"description": "Vite plugin for component tagging",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"type": "module",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/index.ts --format cjs,esm --dts --outDir dist",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "vitest",
"lint": "eslint --ext .js,.ts .",
"lint:fix": "eslint --ext .js,.ts --fix .",
"prepublishOnly": "npm run build",
"clean": "rimraf dist",
"prepare": "npm run clean && npm run build",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\"",
"coverage": "vitest run --coverage"
},
"keywords": [
"vite",
"plugin",
"component",
"tagger"
],
"author": "Emil Fagerholm",
"license": "MIT",
"peerDependencies": {
"vite": "^5.0.0"
},
"dependencies": {
"@babel/parser": "^7.25.9",
"@babel/types": "^7.25.8",
"esbuild": "^0.25.0",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.12",
"tailwindcss": "^3.4.17"
},
"devDependencies": {
"@lovable/eslint-config": "file:../packages/eslint-config-lovable",
"@types/babel__core": "^7.20.5",
"@types/estree": "^1.0.6",
"@types/node": "^22.5.5",
"rimraf": "^5.0.0",
"tsup": "^7.2.0",
"typescript": "^5.5.3",
"vitest": "^0.34.6"
}
}