@gmana/email-checker
Version:
89 lines (88 loc) • 2.35 kB
JSON
{
"name": "@gmana/email-checker",
"version": "0.0.11",
"description": "Email checker",
"keywords": [
"gmana",
"email",
"checker"
],
"homepage": "https://github.com/sun-sreng/npm-gmana-email-checker#readme",
"bugs": {
"url": "https://github.com/sun-sreng/npm-gmana-email-checker/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sun-sreng/npm-gmana-email-checker.git"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/sun-sreng"
},
"license": "MIT",
"author": "Sun Sreng",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "rolldown -c rolldown.config.ts",
"build:all": "bun run build && bun run build:types",
"build:types": "tsc --emitDeclarationOnly --outDir dist",
"check": "bun run lint && bun run format:check",
"clean": "rm -rf dist node_modules bun.lockb package-lock.json",
"dev": "rolldown -c rolldown.dev.config.ts -w",
"format": "prettier --write \"src/**/*.{ts,tsx}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx}\"",
"lint": "eslint \"src/**/*.{ts,tsx}\" --max-warnings=0",
"prepublishOnly": "bun run build:all && bun run test",
"test": "vitest run",
"test:watch": "vitest"
},
"prettier": {
"endOfLine": "lf",
"printWidth": 120,
"semi": false,
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "es5",
"useTabs": false
},
"devDependencies": {
"@eslint/js": "^9.30.1",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.36.0",
"@typescript-eslint/parser": "^8.36.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"globals": "^16.3.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"rolldown": "^1.0.0-beta.25",
"rolldown-plugin-dts": "^0.13.13",
"typescript-eslint": "^8.36.0",
"vitest": "^3.2.4"
},
"peerDependencies": {
"typescript": ">=5.0.0"
},
"engines": {
"bun": ">=1.0.0",
"node": ">=18"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
}
}