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 "lint": "eslint .", 15 "check": "vp check --no-fmt", 16 "generate": "nuxt generate", 17 "preview": "nuxt preview", 18 "postinstall": "nuxt prepare && simple-git-hooks", 19 "test:types": "vue-tsc -b --noEmit", 20 "test": "vp test", 21 "test:watch": "vp test watch", 22 "test:coverage": "vp test --coverage", 23 "test:unit": "vp test --project unit", 24 "test:nuxt": "vp test --project nuxt", 25 "test:browser": "playwright test", 26 "test:browser:ui": "playwright test --ui", 27 "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'" 28 }, 29 "dependencies": { 30 "@nuxt/eslint": "^1.15.2", 31 "@nuxt/fonts": "^0.14.0", 32 "@nuxt/image": "^2.0.0", 33 "@nuxt/scripts": "^1.0.6", 34 "@nuxtjs/html-validator": "^2.1.0", 35 "nuxt": "^4.4.4", 36 "nuxt-og-image": "^6.4.11", 37 "rolldown": "^1.0.0-rc.18", 38 "vite-plus": "0.1.20", 39 "vue": "3.5.33", 40 "vue-router": "^5.0.6" 41 }, 42 "devDependencies": { 43 "@nuxt/test-utils": "4.0.3", 44 "@playwright/test": "1.59.1", 45 "@vitest/coverage-v8": "^4.1.5", 46 "@vue/test-utils": "2.4.10", 47 "eslint": "10.3.0", 48 "happy-dom": "20.9.0", 49 "nano-staged": "^1.0.2", 50 "playwright-core": "^1.59.1", 51 "simple-git-hooks": "2.13.1", 52 "typescript": "6.0.3", 53 "vitest": "npm:@voidzero-dev/vite-plus-test@0.1.20", 54 "vue-tsc": "3.2.7" 55 }, 56 "simple-git-hooks": { 57 "pre-commit": "npx nano-staged" 58 }, 59 "packageManager": "pnpm@10.33.2", 60 "nano-staged": { 61 "*.{js,ts,mjs,cjs,json,.*rc}": [ 62 "npx eslint --fix" 63 ] 64 } 65}