@metagptx/vite-plugin-testid-checker
Version:
A Vite plugin for testid checker
114 lines • 3.31 kB
JSON
{
"name": "@metagptx/vite-plugin-testid-checker",
"version": "0.0.1-alpha.3",
"description": "A Vite plugin for testid checker",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"enforce": "pre",
"apply": "serve",
"type": "module",
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepare": "node ./.husky/prepare.cjs",
"pre-commit": "lint-staged",
"commit-msg": "commitlint -e",
"commit": "git cz",
"build:core": "rimraf dist && rollup -c --bundleConfigAsCjs",
"build": "esno script/build.ts",
"dev:vue": "cd ./playground/vue && pnpm run dev",
"dev:react": "cd ./playground/react && pnpm run dev",
"preinstall:vue": "cd ./playground/vue && pnpm install",
"preinstall:react": "cd ./playground/react && pnpm install",
"prepublishOnly": "pnpm run build",
"preversion": "pnpm run build",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"keywords": [
"vite",
"vite-plugin",
"testid",
"checker"
],
"author": "caowenyue@fuzhi.ai",
"packageManager": "pnpm@10.6.5",
"engines": {
"node": ">=14.0.0"
},
"peerDependencies": {
"vite": "^3.0.0 || ^4.0.0 || ^5.0.0"
},
"devDependencies": {
"@babel/parser": "^7.27.0",
"@babel/traverse": "^7.27.0",
"@rollup/plugin-commonjs": "^28.0.3",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.1",
"@rollup/plugin-sucrase": "^5.0.2",
"@rollup/plugin-typescript": "^12.1.2",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.14.1",
"@vitejs/plugin-vue": "^5.2.3",
"@vue/compiler-dom": "^3.5.13",
"@vue/compiler-sfc": "^3.5.13",
"magic-string": "^0.30.17",
"micromatch": "^4.0.5",
"rimraf": "^5.0.10",
"rollup": "^4.40.2",
"rollup-plugin-dts": "^6.2.1",
"tslib": "^2.8.1",
"typescript": "^5.8.3",
"vite": "^6.2.6",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"@typescript-eslint/parser": "^5.55.0",
"commitizen": "^4.3.0",
"eslint": "^8.36.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.7.0",
"eslint-import-resolver-typescript": "^2.7.1",
"eslint-plugin-html": "^6.2.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-vue": "^8.7.1",
"husky": "^7.0.4",
"lint-staged": "^12.5.0",
"prettier": "^2.8.4",
"@commitlint/cli": "^16.3.0",
"@commitlint/config-conventional": "^16.2.4"
},
"dependencies": {
"@babel/generator": "^7.27.0",
"@babel/parser": "^7.27.0",
"@babel/traverse": "^7.27.0",
"@babel/types": "^7.27.0",
"@types/babel__generator": "^7.27.0",
"@types/babel__traverse": "^7.20.7",
"@vue/compiler-dom": "^3.5.13",
"@vue/compiler-sfc": "^3.5.13",
"estree-walker": "^3.0.3",
"magic-string": "^0.30.17",
"rollup-plugin-terser": "^7.0.2"
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --ext .js,.ts src/ --fix"
]
}
}