mirror your GitHub repos to tangled.org automatically
1

Configure Feed

Select the types of activity you want to include in your feed.

1{ 2 "name": "synchub.to", 3 "license": "MIT", 4 "private": true, 5 "type": "module", 6 "author": { 7 "name": "Daniel Roe", 8 "email": "daniel@roe.dev", 9 "url": "https://roe.dev" 10 }, 11 "scripts": { 12 "build": "nuxt build", 13 "dev": "nuxt dev", 14 "check": "vp check --no-fmt", 15 "lint": "vp lint", 16 "lint:fix": "vp lint --fix", 17 "generate": "nuxt generate", 18 "preview": "nuxt preview", 19 "postinstall": "nuxt prepare && simple-git-hooks", 20 "db:generate": "drizzle-kit generate", 21 "db:migrate": "drizzle-kit migrate", 22 "db:studio": "drizzle-kit studio", 23 "gen:jwk": "node scripts/gen-jwk.ts", 24 "gen:encryption-key": "node -e \"console.log(require('node:crypto').randomBytes(32).toString('base64'))\"", 25 "gen:cron-secret": "node -e \"console.log(require('node:crypto').randomBytes(32).toString('base64url'))\"", 26 "test:types": "vue-tsc -b --noEmit", 27 "test": "vp test", 28 "test:watch": "vp test watch", 29 "test:coverage": "vp test --coverage", 30 "test:unit": "vp test --project unit", 31 "test:nuxt": "vp test --project nuxt", 32 "test:browser": "playwright test", 33 "test:browser:ui": "playwright test --ui", 34 "test:browser:update": "docker run --rm --network host -v $(pwd):/work/ -v /tmp/playwright-node-modules:/work/node_modules -w /work/ -it mcr.microsoft.com/playwright:v1.59.1-noble bash -c 'corepack enable && pnpm i && pnpm playwright test test/browser --update-snapshots'" 35 }, 36 "dependencies": { 37 "@atproto/api": "^0.19.11", 38 "@atproto/jwk-jose": "^0.1.11", 39 "@atproto/oauth-client-node": "^0.3.17", 40 "@neondatabase/serverless": "^1.1.0", 41 "@noble/ciphers": "^2.2.0", 42 "@nuxt/fonts": "^0.14.0", 43 "@nuxt/image": "^2.0.0", 44 "@nuxt/scripts": "^1.0.6", 45 "@nuxtjs/html-validator": "^2.1.0", 46 "@octokit/webhooks-methods": "^6.0.0", 47 "drizzle-orm": "^0.45.2", 48 "nuxt": "^4.4.4", 49 "nuxt-og-image": "^6.4.11", 50 "rolldown": "^1.0.0-rc.18", 51 "vite-plus": "0.1.20", 52 "vue": "3.5.33", 53 "vue-router": "^5.0.6" 54 }, 55 "devDependencies": { 56 "@electric-sql/pglite": "^0.4.5", 57 "@nuxt/test-utils": "4.0.3", 58 "@octokit/webhooks-types": "^7.6.1", 59 "@playwright/test": "1.59.1", 60 "@stylistic/eslint-plugin": "^5.10.0", 61 "@vitest/coverage-v8": "^4.1.5", 62 "@vue/test-utils": "2.4.10", 63 "drizzle-kit": "^0.31.10", 64 "happy-dom": "20.9.0", 65 "nano-staged": "^1.0.2", 66 "playwright-core": "^1.59.1", 67 "simple-git-hooks": "2.13.1", 68 "typescript": "6.0.3", 69 "vitest": "npm:@voidzero-dev/vite-plus-test@0.1.20", 70 "vue-tsc": "3.2.7" 71 }, 72 "simple-git-hooks": { 73 "pre-commit": "npx nano-staged" 74 }, 75 "packageManager": "pnpm@10.33.2", 76 "nano-staged": { 77 "*.{js,ts,mjs,cjs,vue,json,.*rc}": [ 78 "vp lint --fix" 79 ] 80 } 81}