1
0
Fork 0
mirror of https://github.com/imjasonh/apkviz synced 2026-07-08 09:55:09 +00:00
apkviz/package.json
Jason Hall 72c2a57471
Add GitHub Pages deployment with GitHub Actions
- Add GitHub Actions workflow to build and deploy on push to main
- Configure webpack for production builds with correct base path
- Add CopyWebpackPlugin to copy APKINDEX file to dist
- Update data fetcher to handle GitHub Pages base path
- Clean dist directory on build for fresh deployments

The site will be automatically deployed to https://imjasonh.github.io/apkviz/
whenever changes are pushed to the main branch.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-13 15:46:07 -04:00

40 lines
1.1 KiB
JSON

{
"name": "apkviz",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "webpack serve --mode development",
"build": "npm run fetch-data && webpack --mode production",
"fetch-data": "node scripts/fetch-data.js",
"typecheck": "tsc --noEmit",
"watch": "tsc --noEmit --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"debug": "node browser-debug.js",
"browser-test": "node browser-test.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"@playwright/test": "^1.53.0",
"@types/d3": "^7.4.3",
"@types/node": "^24.0.1",
"@types/pako": "^2.0.3",
"copy-webpack-plugin": "^13.0.0",
"css-loader": "^7.1.2",
"html-webpack-plugin": "^5.6.3",
"node-fetch": "^2.7.0",
"playwright": "^1.53.0",
"style-loader": "^4.0.0",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack": "^5.99.9",
"webpack-cli": "^6.0.1",
"webpack-dev-server": "^5.2.2"
},
"dependencies": {
"d3": "^7.9.0",
"pako": "^2.1.0"
}
}