@meui-creative/dev-tools
Version:
Professional responsive DevTools for React applications with device preview, performance testing, and accessibility auditing
94 lines (93 loc) • 2.47 kB
JSON
{
"name": "@meui-creative/dev-tools",
"version": "1.0.6",
"description": "Professional responsive DevTools for React applications with device preview, performance testing, and accessibility auditing",
"main": "dist/index.js",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.js"
}
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"prepublishOnly": "bun run build",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish",
"lint": "eslint src --ext .ts,.tsx --fix",
"lint:check": "eslint src --ext .ts,.tsx",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist",
"test": "echo \"No tests yet\" && exit 0"
},
"keywords": [
"react",
"devtools",
"responsive",
"testing",
"accessibility",
"performance",
"mobile",
"preview",
"meui",
"creative"
],
"author": "MEUI Creative",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/meui-creative/meui-DevTools.git"
},
"homepage": "https://github.com/meui-creative/meui-DevTools#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"react": ">=18.0.0",
"react-dom": ">=18.0.0"
},
"dependencies": {
"lucide-react": "^0.263.1"
},
"devDependencies": {
"@types/react": "^19.1.10",
"@types/react-dom": "^19.1.7",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-plugin-jsx-a11y": "^6.10.2",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^4.6.2",
"husky": "^8.0.3",
"lint-staged": "^15.5.2",
"prettier": "^3.6.2",
"tsup": "^8.5.0",
"typescript": "^5.9.2"
},
"lint-staged": {
"*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"*.{js,jsx,json,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=16.0.0"
}
}