-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 821 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 821 Bytes
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
{
"name": "my-custom-gpts",
"version": "1.0.0",
"description": "A tool to manage Custom GPT prompts and generate documentation",
"scripts": {
"start": "pnpm build && pnpm preview",
"generate": "node src/generate.mjs",
"dev": "next dev",
"build": "next build",
"preview": "pnpm dlx serve out",
"lint": "next lint"
},
"keywords": [
"gpt",
"prompts",
"documentation"
],
"author": "",
"license": "MIT",
"dependencies": {
"@heroicons/react": "^2.1.1",
"fs-extra": "^11.2.0",
"glob": "^10.3.10",
"next": "^16.2.6",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"yaml": "^2.8.3"
},
"devDependencies": {
"autoprefixer": "^10.4.17",
"husky": "^9.1.7",
"postcss": "^8.4.35",
"serve": "^14.2.1",
"tailwindcss": "^3.4.1"
}
}