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