next-google-ads
Version:
Google AdSense component for Next.js with optimized script loading
79 lines (78 loc) • 1.72 kB
JSON
{
"version": "1.2.0",
"license": "MIT",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.mjs",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"src"
],
"engines": {
"node": ">=20.19.0"
},
"scripts": {
"dev": "vite build --watch",
"build": "vite build",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"lint": "biome check .",
"lint:fix": "biome check --write .",
"format": "biome format --write .",
"prepare": "vite build",
"release": "np"
},
"peerDependencies": {
"next": ">=16",
"react": ">=19"
},
"np": {
"yarn": false,
"contents": ".",
"anyBranch": false,
"publish": true,
"releaseDraft": true
},
"name": "next-google-ads",
"description": "Google AdSense component for Next.js with optimized script loading",
"author": "Hidetaka Okamoto",
"repository": {
"type": "git",
"url": "https://github.com/hideokamoto/next-google-ads.git"
},
"keywords": [
"nextjs",
"next",
"google-adsense",
"adsense",
"ads",
"react",
"typescript"
],
"devDependencies": {
"@biomejs/biome": "^2.3.5",
"@types/react": "^19.0.0",
"@types/react-dom": "^19.0.0",
"@vitejs/plugin-react": "^5.1.1",
"@vitest/ui": "^4.0.9",
"jsdom": "^27.2.0",
"next": "^16.0.0",
"np": "^10.0.0",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"tslib": "^2.3.1",
"typescript": "^5.7.0",
"vite": "^7.2.2",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.0.9"
}
}