-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.32 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.32 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
{
"name": "skynest",
"version": "0.1.0",
"private": true,
"type": "module",
"packageManager": "pnpm@10.33.0",
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest",
"oauth:gen-keypair": "tsx scripts/oauth-gen-keypair.ts",
"test:webhook": "tsx scripts/test-webhook-readai.ts"
},
"dependencies": {
"@ai-sdk/gateway": "^3.0.125",
"@azure/identity": "^4.13.1",
"@azure/storage-blob": "^12.33.0",
"@modelcontextprotocol/sdk": "1.26.0",
"@promptowl/contextnest-engine": "file:./vendor/packages/engine",
"@vercel/blob": "^2.4.0",
"ai": "^6.0.197",
"jose": "^6.0.0",
"js-yaml": "^4.2.0",
"mcp-handler": "1.1.0",
"next": "15.5.19",
"next-auth": "5.0.0-beta.30",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@tailwindcss/postcss": "^4.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20",
"@types/react": "^19",
"@types/react-dom": "^19",
"dotenv": "^17.4.2",
"eslint": "^9.39.5",
"eslint-config-next": "15.5.19",
"tailwindcss": "^4.0.0",
"tsx": "^4.19.2",
"typescript": "^5",
"typescript-eslint": "^8.68.0",
"vitest": "^2.0.0"
}
}