forked from thejasonxie/private-github-link
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
114 lines (111 loc) · 3.77 KB
/
package.json
File metadata and controls
114 lines (111 loc) · 3.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"name": "private-github-link",
"version": "1.0.0",
"description": "Share private GitHub repositories without adding collaborators",
"author": "Jason Xie",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/thejasonxie/private-github-link.git"
},
"type": "module",
"scripts": {
"build": "node --max-old-space-size=8192 ./node_modules/vite/bin/vite.js build && node -e \"require('node:fs').copyFileSync('instrument.server.mjs', '.output/server/instrument.server.mjs')\"",
"check": "biome check",
"dev": "dotenv -e .env.local -- sh -c \"NODE_OPTIONS='--import ./instrument.server.mjs' vite dev --port 3000\"",
"format": "biome format",
"lint": "biome lint",
"preview": "vite preview",
"start": "node --import ./.output/server/instrument.server.mjs .output/server/index.mjs",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:ui": "vitest --ui",
"refresh": "rm -rf node_modules bun.lock package-lock.json .sst .tanstack .output && bun install"
},
"dependencies": {
"@base-ui/react": "^1.1.0",
"@fontsource-variable/noto-sans": "^5.2.10",
"@sentry/tanstackstart-react": "^10.36.0",
"@tailwindcss/vite": "^4.0.6",
"@tanstack/react-devtools": "^0.7.0",
"@tanstack/react-query": "^5.66.5",
"@tanstack/react-query-devtools": "^5.84.2",
"@tanstack/react-router": "^1.132.0",
"@tanstack/react-router-devtools": "^1.132.0",
"@tanstack/react-router-ssr-query": "^1.131.7",
"@tanstack/react-start": "^1.132.0",
"@tanstack/react-store": "^0.8.0",
"@tanstack/router-plugin": "^1.132.0",
"@tanstack/store": "^0.8.0",
"@wooorm/starry-night": "^3.9.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"cmdk": "^1.1.1",
"d3-geo": "^3.1.1",
"date-fns": "^4.1.0",
"dotenv-cli": "^11.0.0",
"embla-carousel-react": "^8.6.0",
"highlight.js": "^11.11.1",
"input-otp": "^1.4.2",
"lucide-react": "^0.563.0",
"mermaid": "^11.13.0",
"mdast-util-to-string": "^4.0.0",
"next-themes": "^0.4.6",
"nitro": "npm:nitro-nightly@latest",
"octokit": "^5.0.5",
"posthog-js": "^1.335.3",
"react": "^19.2.0",
"react-day-picker": "^9.13.0",
"react-dom": "^19.2.0",
"react-markdown": "^10.1.0",
"react-resizable-panels": "^4.5.1",
"recharts": "2.15.4",
"rehype-raw": "^7.0.0",
"rehype-sanitize": "^6.0.0",
"remark-gfm": "^4.0.1",
"remark-parse": "^11.0.0",
"shadcn": "^3.7.0",
"sonner": "^2.0.7",
"sst": "3.17.38",
"tailwind-merge": "^3.4.0",
"tailwindcss": "^4.0.6",
"three": "^0.183.2",
"topojson-client": "^3.1.0",
"tw-animate-css": "^1.4.0",
"unified": "^11.0.5",
"unist-util-visit": "^5.0.0",
"usehooks-ts": "^3.1.1",
"vaul": "^1.1.2",
"vite-tsconfig-paths": "^6.0.2",
"vscode-oniguruma": "^2.0.1"
},
"devDependencies": {
"@biomejs/biome": "2.2.4",
"@tailwindcss/typography": "^0.5.19",
"@tanstack/devtools-event-client": "^0.4.0",
"@tanstack/devtools-vite": "^0.3.11",
"@testing-library/dom": "^10.4.0",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.2.0",
"@types/aws-lambda": "8.10.160",
"@types/d3-geo": "^3.1.0",
"@types/geojson": "^7946.0.16",
"@types/node": "^22.10.2",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"@types/three": "^0.183.1",
"@types/topojson-client": "^3.1.5",
"@vitejs/plugin-react": "^5.0.4",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/ui": "^3.2.4",
"babel-plugin-react-compiler": "^1.0.0",
"jsdom": "^27.0.0",
"msw": "^2.12.7",
"patch-package": "^8.0.1",
"typescript": "^5.7.2",
"vite": "^7.1.7",
"vitest": "^3.0.5",
"web-vitals": "^5.1.0"
}
}