mirror your GitHub repos to tangled.org automatically
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 "test:types": "vue-tsc -b --noEmit",
21 "test": "vp test",
22 "test:watch": "vp test watch",
23 "test:coverage": "vp test --coverage",
24 "test:unit": "vp test --project unit",
25 "test:nuxt": "vp test --project nuxt",
26 "test:browser": "playwright test",
27 "test:browser:ui": "playwright test --ui",
28 "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'"
29 },
30 "dependencies": {
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 "@stylistic/eslint-plugin": "^5.10.0",
46 "@vitest/coverage-v8": "^4.1.5",
47 "@vue/test-utils": "2.4.10",
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,vue,json,.*rc}": [
62 "vp lint --fix"
63 ]
64 }
65}