-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.08 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 2.08 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "create-docubase",
"version": "1.2.0",
"description": "Create a new DocuBase documentation site",
"type": "module",
"bin": {
"create-docubase": "./bin/cli.js"
},
"files": [
"bin",
"template"
],
"scripts": {
"dev": "astro dev",
"build": "astro build && pagefind --site dist",
"build:with-index": "pnpm run index-content && astro build && pagefind --site dist",
"preview": "astro preview",
"astro": "astro",
"test": "vitest run",
"test:watch": "vitest",
"typecheck": "astro check",
"changeset": "changeset",
"version": "changeset version",
"release": "changeset publish",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build",
"index-content": "npx tsx scripts/index-content.ts",
"index-content:watch": "npx tsx scripts/index-watch.ts"
},
"keywords": [
"documentation",
"astro",
"template",
"cli",
"create",
"docubase"
],
"repository": {
"type": "git",
"url": "https://github.com/Sithumli/DocuBase"
},
"author": "",
"license": "MIT",
"dependencies": {
"@astrojs/check": "^0.9.6",
"@astrojs/mdx": "^4.3.13",
"@astrojs/vercel": "^8.0.0",
"@google/generative-ai": "^0.21.0",
"@tailwindcss/vite": "^4.1.18",
"@upstash/vector": "^1.1.0",
"astro": "^5.16.11",
"dotenv": "^16.4.0",
"fs-extra": "^11.2.0",
"gray-matter": "^4.0.3",
"iconify-icon": "^3.0.2",
"picocolors": "^1.1.1",
"prompts": "^2.4.2",
"rehype-slug": "^6.0.0",
"tailwindcss": "^4.1.18",
"typescript": "^5.9.3"
},
"devDependencies": {
"@changesets/cli": "^2.27.0",
"@storybook/addon-essentials": "^8.4.0",
"@storybook/addon-interactions": "^8.4.0",
"@storybook/addon-links": "^8.4.0",
"@storybook/blocks": "^8.4.0",
"@storybook/html": "^8.4.0",
"@storybook/html-vite": "^8.4.0",
"@storybook/test": "^8.4.0",
"@types/fs-extra": "^11.0.4",
"@types/node": "^25.0.10",
"@types/prompts": "^2.4.9",
"pagefind": "^1.4.0",
"storybook": "^8.4.0",
"tsx": "^4.19.0",
"vitest": "^3.0.0"
}
}