UNPKG

frontend-standards-checker

Version:

A comprehensive frontend standards validation tool with TypeScript support

96 lines (95 loc) 3.51 kB
{ "name": "@dcefront/frontend-standards-checker", "version": "1.0.41", "description": "A comprehensive frontend standards validation tool with TypeScript support", "type": "module", "main": "dist/src/index.js", "types": "dist/src/index.d.ts", "bin": { "frontend-standards-checker": "./dist/bin/cli.js", "frontend-standards-init": "./bin/copy-frontend-standards-files.cjs" }, "exports": { ".": { "import": "./dist/src/index.js", "require": "./dist/src/index.js" }, "./bin/cli": { "import": "./dist/bin/cli.js", "require": "./dist/bin/cli.js" }, "./src/utils/file-scanner": { "import": "./dist/src/utils/file-scanner.js", "require": "./dist/src/utils/file-scanner.js" } }, "files": [ "dist", "README.md", "LICENSE", "checkFrontendStandards.config.mjs", "checkFrontendStandards.COMPLETE-GUIDE.md", "bin/frontend-standards-log-viewer.html" ], "scripts": { "build": "tsc && chmod +x dist/bin/cli.js && cp bin/frontend-standards-log-viewer.html dist/bin/ && cp checkFrontendStandards.COMPLETE-GUIDE.md dist/", "build:watch": "tsc --watch", "watch": "npm run build:watch", "pub": "npm publish", "dev": "tsx --watch src/index.ts", "start": "node dist/src/index.js", "cli": "tsx bin/cli.ts", "cli:build": "node dist/bin/cli.js", "type-check": "tsc --noEmit", "lint": "echo 'Linting temporarily disabled - TypeScript provides type checking'", "test": "jest --coverage", "clean": "rm -rf dist", "postinstall": "npm run build 2>/dev/null || yarn build 2>/dev/null || (echo 'Build step skipped - using pre-built files'; exit 0); echo '\n🎉 Frontend Standards Checker instalado correctamente!\n\n📋 Comandos disponibles:\n npm run standards (o yarn standards)\n npm run standards --all-files src components\n npm run standards -- --verbose'", "prepare": "husky install || true" }, "keywords": [ "frontend", "standards", "validation", "typescript", "javascript", "react" ], "author": "Juan David Peña", "license": "MIT", "dependencies": { "acorn": "^8.11.3", "acorn-walk": "^8.3.2", "chalk": "^5.3.0", "commander": "^11.1.0", "inquirer": "^12.8.2", "nthline": "^1.0.2", "typescript": "^5.3.0" }, "devDependencies": { "@babel/core": "^7.28.3", "@babel/preset-env": "^7.28.3", "@babel/preset-typescript": "^7.27.1", "@types/babel__core": "^7", "@types/babel__preset-env": "^7", "@types/jest": "^30.0.0", "@types/node": "^24.0.14", "@types/which": "^3.0.4", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "babel-jest": "^30.0.5", "babel-plugin-transform-import-meta": "^2.3.3", "eslint": "^8.57.1", "husky": "^9.1.7", "jest": "^30.0.4", "ts-jest": "^29.4.0", "tsx": "^4.6.0" }, "engines": { "node": ">=18.0.0" }, "resolutions": { "tmp": "0.2.4" }, "packageManager": "yarn@4.9.2+sha512.1fc009bc09d13cfd0e19efa44cbfc2b9cf6ca61482725eb35bbc5e257e093ebf4130db6dfe15d604ff4b79efd8e1e8e99b25fa7d0a6197c9f9826358d4d65c3c" }