Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion app/components/Analysis/Card.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@ const { data, status, error } = useFetch(
query: {
created_at: props.user.created_at,
repos_count: props.user.public_repos,
pages: 2,
pages: 1,
ai: true,
},
key: analysisKey,
watch: [username],
Expand Down
10 changes: 5 additions & 5 deletions app/components/Main/Footer.vue
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<script setup lang="ts">
import packageJson from "voight-kampff-test/package.json";
import packageJson from "@unveil/identity/package.json";

const voightKampffVersion = packageJson.version;
const unveilIdentityVersion = packageJson.version;
</script>

<template>
Expand Down Expand Up @@ -100,11 +100,11 @@ const voightKampffVersion = packageJson.version;
<NuxtLink
external
target="_blank"
to="https://github.com/MatteoGabriele/voight-kampff-test"
to="https://github.com/unveil-project/identity"
class="text-xs text-gh-muted/80 hover:text-gh-text transition-colors underline"
:title="`voight-kampff-test v${voightKampffVersion}`"
:title="`@unveil/identity v${unveilIdentityVersion}`"
>
voight-kampff-test v{{ voightKampffVersion }}
@unveil/identity v{{ unveilIdentityVersion }}
</NuxtLink>
</div>

Expand Down
2 changes: 1 addition & 1 deletion app/composables/useClassificationDetails.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getClassificationDetails } from "voight-kampff-test";
import { getClassificationDetails } from "@unveil/identity";

type ClassificationDetails = ReturnType<typeof getClassificationDetails>;

Expand Down
2 changes: 1 addition & 1 deletion app/composables/useSeo.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { getClassificationDetails } from "voight-kampff-test";
import { getClassificationDetails } from "@unveil/identity";

export function useSeoUser(user: MaybeRefOrGetter<GitHubUser | undefined>) {
const ogTitle = computed<string | undefined>(() => {
Expand Down
3 changes: 2 additions & 1 deletion nuxt.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export default defineNuxtConfig({
"@vue/devtools-core",
"@vue/devtools-kit",
"dayjs", // CJS
"voight-kampff-test",
"@unveil/identity",
"@vueuse/core",
],
},
Expand Down Expand Up @@ -40,6 +40,7 @@ export default defineNuxtConfig({

runtimeConfig: {
githubToken: "",
geminiApiKey: "",
},

css: ["~/assets/main.css"],
Expand Down
98 changes: 57 additions & 41 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 3 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,17 @@
"test": "vitest"
},
"dependencies": {
"@google/generative-ai": "^0.24.1",
"@nuxt/fonts": "^0.14.0",
"@nuxtjs/color-mode": "^4.0.0",
"@unocss/preset-icons": "^66.6.0",
"@unveil/compactor": "^1.0.0",
"@unveil/identity": "^1.0.0",
"@vueuse/core": "^14.2.1",
"dayjs": "^1.11.19",
"nuxt": "^4.3.1",
"octokit": "^5.0.5",
"valibot": "^1.2.0",
"voight-kampff-test": "^2.5.0",
"vue": "^3.5.28",
"vue-router": "^4.6.4"
},
Expand Down
Loading