39 lines
1.1 KiB
JSON
39 lines
1.1 KiB
JSON
{
|
|
"name": "mirror-to-gitea",
|
|
"version": "1.0.0",
|
|
"description": "mirror all your public github repositories to your gitea server",
|
|
"main": "index.cjs",
|
|
"scripts": {
|
|
"clean": "rm -rf dist/",
|
|
"check": "npx @biomejs/biome check --write",
|
|
"build": "esbuild src/index.mjs --bundle --outdir=dist/ --platform=node",
|
|
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jaedle/mirror-to-gitea.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "",
|
|
"license": "ISC",
|
|
"bugs": {
|
|
"url": "https://github.com/jaedle/mirror-to-gitea/issues"
|
|
},
|
|
"homepage": "https://github.com/jaedle/mirror-to-gitea#readme",
|
|
"dependencies": {
|
|
"@babel/plugin-proposal-class-properties": "^7.18.6",
|
|
"@babel/plugin-transform-runtime": "^7.25.4",
|
|
"@octokit/rest": "^21.0.2",
|
|
"@types/jest": "^29.5.13",
|
|
"p-queue": "^8.0.1",
|
|
"superagent": "^10.1.0"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "1.9.2",
|
|
"@kie/mock-github": "^3.0.0-beta.1",
|
|
"esbuild": "0.24.0",
|
|
"jest": "^29.7.0"
|
|
},
|
|
"type": "module"
|
|
}
|