mirror of
https://github.com/LukeHagar/usage-statistics.git
synced 2025-12-06 04:21:55 +00:00
65 lines
1.7 KiB
JSON
65 lines
1.7 KiB
JSON
{
|
|
"name": "usage-statistics",
|
|
"version": "1.0.5",
|
|
"type": "module",
|
|
"description": "A comprehensive GitHub Action for tracking download statistics across multiple platforms",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/LukeHagar/usage-statistics.git"
|
|
},
|
|
"homepage": "https://github.com/LukeHagar/usage-statistics#readme",
|
|
"main": "src/index.ts",
|
|
"scripts": {
|
|
"dev": "bun --watch --env-file=.dev.env --env-file=.env run src/action.ts",
|
|
"build": "tsc -p tsconfig.build.json && npm run bundle",
|
|
"bundle": "ncc build dist/action.js -o dist",
|
|
"test": "bun test",
|
|
"test:action": "bun --env-file=.dev.env run dist/action.js",
|
|
"clean": "rm -rf dist/",
|
|
"prebuild": "npm run clean"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "latest",
|
|
"@types/node": "^20.0.0",
|
|
"@types/semver": "7.7.0",
|
|
"@vercel/ncc": "^0.38.0",
|
|
"bun-types": "1.2.19",
|
|
"typescript": "^5.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@actions/core": "1.11.1",
|
|
"@actions/github": "6.0.1",
|
|
"@google-cloud/bigquery": "^7.0.0",
|
|
"@octokit/graphql": "^7.0.0",
|
|
"@octokit/plugin-retry": "^7.0.0",
|
|
"@octokit/plugin-throttling": "^7.0.0",
|
|
"@octokit/rest": "22.0.0",
|
|
"chart.js": "^4.5.0",
|
|
"chartjs-adapter-moment": "1.0.1",
|
|
"fast-xml-parser": "5.2.5",
|
|
"moment": "2.30.1",
|
|
"semver": "^7.5.0",
|
|
"skia-canvas": "2.0.2"
|
|
},
|
|
"engines": {
|
|
"bun": ">=1.0.0"
|
|
},
|
|
"keywords": [
|
|
"github-action",
|
|
"statistics",
|
|
"analytics",
|
|
"downloads",
|
|
"npm",
|
|
"github",
|
|
"pypi",
|
|
"powershell",
|
|
"tracking",
|
|
"usage",
|
|
"charts",
|
|
"reports"
|
|
],
|
|
"author": "LukeHagar",
|
|
"license": "MIT",
|
|
"private": true
|
|
}
|