Files

69 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2023-03-30 11:33:23 +08:00
{
2026-02-20 07:58:55 -05:00
"name": "vitepress-plugin-adsense",
"version": "0.0.1",
2023-03-30 17:27:57 +08:00
"description": "Insert Google AdSense script to `index.html` and create `ads.txt` file",
2023-03-30 11:33:23 +08:00
"keywords": [
"node",
"vite",
"vite-plugin",
"google",
"adsense",
"advertisement"
],
2026-02-20 07:58:55 -05:00
"homepage": "https://src.isharkfly.com/iSharkFly-Open/vitepress-plugin-adsense/src/branch/main/README.md",
2023-03-30 11:33:23 +08:00
"bugs": {
2026-02-20 07:58:55 -05:00
"url": "https://src.isharkfly.com/iSharkFly-Open/vitepress-plugin-adsense/issues"
2023-03-30 11:33:23 +08:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/guoyunhe/vite-plugin-adsense.git"
},
"funding": "https://github.com/sponsors/guoyunhe",
2025-08-09 14:57:58 +08:00
"license": "MPL-2.0",
2023-03-30 11:33:23 +08:00
"author": {
"name": "Guo Yunhe",
"email": "i@guoyunhe.me"
},
2023-03-30 16:46:12 +08:00
"type": "module",
2024-03-06 11:09:25 +08:00
"main": "dist/index.js",
2024-03-04 22:43:53 +08:00
"types": "dist/index.d.ts",
2023-03-30 11:33:23 +08:00
"files": [
"dist",
"CHANGELOG.md",
"LICENSE",
"README.md"
],
"scripts": {
2024-03-04 22:43:53 +08:00
"build": "rive build",
"build:watch": "rive build --watch",
"lint": "rive lint",
"lint:fix": "rive lint --fix",
"start": "rive start",
"test": "rive test",
"test:ui": "rive test --ui",
"test:watch": "rive test --watch"
2023-03-30 11:33:23 +08:00
},
2024-03-04 22:43:53 +08:00
"prettier": "prettier-config-rive",
2023-03-30 11:33:23 +08:00
"eslintConfig": {
2024-03-04 22:43:53 +08:00
"extends": "eslint-config-rive"
2023-03-30 11:33:23 +08:00
},
"devDependencies": {
2024-03-04 22:43:53 +08:00
"@mdx-js/react": "^3.0.1",
2024-03-04 22:47:53 +08:00
"@types/node": "^20.11.24",
2024-03-06 11:11:52 +08:00
"@types/react": "^18.2.63",
"@types/react-dom": "^18.2.20",
2024-03-04 22:43:53 +08:00
"react": "^18.2.0",
"react-doc-ui": "^2.2.6",
"react-dom": "^18.2.0",
"rive": "^2.0.33",
2024-03-04 22:47:53 +08:00
"typescript": "^5.3.3",
2024-03-06 11:11:52 +08:00
"vite": "^5.1.5"
2024-03-04 22:43:53 +08:00
},
"rive": {
"template": "node",
"doc": {
"basename": "/vite-plugin-adsense/"
}
2023-03-30 11:33:23 +08:00
}
}