Skip to content

Commit c806d07

Browse files
authored
Merge pull request #83 from NeurProjects/release/0.1.13
v0.1.13 Update
2 parents e926a06 + e915d0b commit c806d07

File tree

17 files changed

+1677
-1411
lines changed

17 files changed

+1677
-1411
lines changed

.env.example

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,3 +13,8 @@ HELIUS_API_KEY=
1313
# coingecko api key and base url
1414
CG_API_KEY=
1515
CG_BASE_URL=
16+
TELEGRAM_BOT_TOKEN=
17+
TELEGRAM_BOT_USERNAME=<optional>
18+
DISCORD_BOT_TOKEN=
19+
DISCORD_GUILD_ID=
20+
DISCORD_ROLE_ID=

CHANGELOGS.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# Changelogs
22

3+
## v0.1.13
4+
5+
- Telegram notification tool
6+
- Discord Privy config, EAP role linking
7+
38
## v0.1.12
49

510
- Utilize PPQ for AI model endpoint

package.json

Lines changed: 20 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "neur-app",
3-
"version": "0.1.12",
3+
"version": "0.1.13",
44
"private": true,
55
"scripts": {
66
"vercel-build": "pnpm npx prisma generate && next build",
@@ -17,13 +17,13 @@
1717
"format:check": "prettier --check \"**/*.{ts,tsx,md,json,js,jsx}\""
1818
},
1919
"dependencies": {
20-
"@ai-sdk/anthropic": "^1.0.5",
21-
"@ai-sdk/openai": "^1.0.10",
20+
"@ai-sdk/anthropic": "^1.0.6",
21+
"@ai-sdk/openai": "^1.0.13",
2222
"@bonfida/spl-name-service": "^3.0.7",
2323
"@mem0/vercel-ai-provider": "^0.0.10",
2424
"@prisma/client": "6.1.0",
25-
"@privy-io/react-auth": "^1.98.2",
26-
"@privy-io/server-auth": "^1.17.0",
25+
"@privy-io/react-auth": "^1.99.0",
26+
"@privy-io/server-auth": "^1.17.2",
2727
"@radix-ui/react-accordion": "^1.2.2",
2828
"@radix-ui/react-alert-dialog": "^1.1.4",
2929
"@radix-ui/react-avatar": "^1.1.2",
@@ -41,52 +41,53 @@
4141
"@solana/web3.js": "1.98.0",
4242
"@vercel/analytics": "^1.4.1",
4343
"@vercel/speed-insights": "^1.1.0",
44-
"ai": "^4.0.20",
44+
"ai": "^4.0.27",
4545
"bs58": "^6.0.0",
4646
"class-variance-authority": "^0.7.1",
4747
"clsx": "^2.1.1",
4848
"date-fns": "^4.1.0",
49-
"framer-motion": "^11.15.0",
50-
"helius-sdk": "^1.4.0",
49+
"framer-motion": "^11.16.0",
50+
"helius-sdk": "^1.4.1",
5151
"keyv": "4.5.4",
5252
"lodash": "^4.17.21",
5353
"lucide-react": "^0.468.0",
54-
"mem0ai": "^1.0.29",
54+
"mem0ai": "^1.0.30",
5555
"next": "15.1.2",
5656
"next-safe-action": "^7.10.2",
5757
"next-themes": "^0.4.4",
58+
"node-fetch": "^3.3.2",
5859
"react": "^19.0.0",
5960
"react-day-picker": "8.10.1",
6061
"react-dom": "^19.0.0",
61-
"react-markdown": "^9.0.1",
62+
"react-markdown": "^9.0.3",
6263
"react-particles": "^2.12.2",
6364
"react-tweet": "^3.2.1",
6465
"recharts": "^2.15.0",
6566
"rehype-raw": "^7.0.0",
6667
"remark-gfm": "^4.0.0",
6768
"solana-agent-kit": "1.3.2",
6869
"sonner": "^1.7.1",
69-
"swr": "^2.2.5",
70-
"tailwind-merge": "^2.5.5",
70+
"swr": "^2.3.0",
71+
"tailwind-merge": "^2.6.0",
7172
"tailwindcss-animate": "^1.0.7",
7273
"tsparticles-slim": "^2.12.0",
73-
"uuid": "^11.0.3",
74+
"uuid": "^11.0.4",
7475
"yet-another-react-lightbox": "^3.21.7",
7576
"zod": "^3.24.1",
7677
"zustand": "^5.0.2"
7778
},
7879
"devDependencies": {
7980
"@eslint/eslintrc": "^3.2.0",
8081
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
81-
"@types/lodash": "^4.17.13",
82-
"@types/node": "^20.17.10",
83-
"@types/react": "^19.0.0",
84-
"@types/react-dom": "^19.0.0",
82+
"@types/lodash": "^4.17.14",
83+
"@types/node": "^20.17.12",
84+
"@types/react": "^19.0.3",
85+
"@types/react-dom": "^19.0.2",
8586
"eslint": "^9.17.0",
8687
"eslint-config-next": "15.1.0",
8788
"postcss": "^8.4.49",
88-
"prettier": "^3.2.5",
89-
"prettier-plugin-tailwindcss": "^0.5.12",
89+
"prettier": "^3.4.2",
90+
"prettier-plugin-tailwindcss": "^0.5.14",
9091
"prisma": "^6.1.0",
9192
"tailwind-scrollbar": "^3.1.0",
9293
"tailwindcss": "^3.4.17",

0 commit comments

Comments
 (0)