-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.3 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.3 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
{
"name": "deapi-tester",
"version": "0.1.0",
"description": "Local developer testing app for deAPI.ai — unified AI inference API for image generation, video creation, audio synthesis and more",
"author": {
"name": "deAPI",
"url": "https://deapi.ai"
},
"license": "MIT",
"engines": {
"node": ">=18.18.0"
},
"repository": {
"type": "git",
"url": "https://github.com/deapi-ai/deapi-tester.git"
},
"homepage": "https://github.com/deapi-ai/deapi-tester",
"bugs": {
"url": "https://github.com/deapi-ai/deapi-tester/issues"
},
"keywords": [
"deapi",
"ai",
"inference",
"api-tester",
"image-generation",
"video-generation",
"text-to-speech",
"developer-tool",
"nextjs"
],
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"start": "next start",
"lint": "next lint"
},
"dependencies": {
"lucide-react": "^0.563.0",
"next": "^15.5.12",
"react": "^19.2.4",
"react-dom": "^19.2.4"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^19.2.10",
"@types/react-dom": "^19.2.3",
"autoprefixer": "^10.4.17",
"eslint": "^8.56.0",
"eslint-config-next": "^15.5.12",
"postcss": "^8.4.35",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3"
}
}