-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
110 lines (110 loc) · 3.18 KB
/
package.json
File metadata and controls
110 lines (110 loc) · 3.18 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
{
"name": "specra",
"version": "0.2.3",
"description": "A modern documentation library for SvelteKit with built-in versioning, API reference generation, full-text search, and MDX support",
"svelte": "./dist/index.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"types": "./dist/index.d.ts",
"svelte": "./dist/index.js",
"import": "./dist/index.js"
},
"./components": {
"types": "./dist/components/index.d.ts",
"svelte": "./dist/components/index.js",
"import": "./dist/components/index.js"
},
"./stores": {
"types": "./dist/stores/index.d.ts",
"svelte": "./dist/stores/index.js",
"import": "./dist/stores/index.js"
},
"./lib": {
"types": "./dist/lib/index.d.ts",
"import": "./dist/lib/index.js"
},
"./svelte-config": {
"import": "./config/svelte-config.js"
},
"./middleware/security": {
"types": "./dist/middleware/security.d.ts",
"import": "./dist/middleware/security.js"
},
"./styles": "./dist/styles/globals.css",
"./styles.css": "./dist/styles/globals.css",
"./config.schema.json": "./config/specra.config.schema.json"
},
"files": [
"dist",
"config"
],
"scripts": {
"build": "rm -rf dist && npm run generate:schema && svelte-kit sync && svelte-package",
"dev": "svelte-package --watch",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"typecheck": "svelte-check --tsconfig ./tsconfig.json",
"generate:schema": "ts-json-schema-generator --path src/lib/config.types.ts --type SpecraConfig --out config/specra.config.schema.json"
},
"keywords": [
"documentation",
"docs",
"sveltekit",
"svelte",
"mdx",
"api-reference",
"versioning",
"search"
],
"author": "dalmasonto, arthur-kamau",
"license": "SEE LICENSE IN LICENSE.MD",
"repository": {
"type": "git",
"url": "https://github.com/SpecraDocs/specra"
},
"homepage": "https://github.com/SpecraDocs/specra-cli",
"peerDependencies": {
"@sveltejs/kit": "^2.0.0",
"svelte": "^5.0.0"
},
"dependencies": {
"bits-ui": "^1.0.0",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"date-fns": "^4.1.0",
"embla-carousel-svelte": "^8.5.1",
"gray-matter": "^4.0.3",
"katex": "^0.16.27",
"lucide-svelte": "^0.454.0",
"mdsvex": "^0.12.0",
"meilisearch": "^0.54.0",
"mermaid": "^11.12.2",
"mode-watcher": "^0.5.0",
"hast-util-to-html": "^9.0.0",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"rehype-slug": "^6.0.0",
"rehype-stringify": "^10.0.1",
"remark-gfm": "^4.0.0",
"remark-math": "^6.0.0",
"remark-rehype": "^11.1.2",
"svelte-sonner": "^0.3.28",
"tailwind-merge": "^2.6.0",
"tailwindcss": "^4.1.18",
"tw-animate-css": "^1.4.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@sveltejs/adapter-auto": "^3.0.0",
"@sveltejs/kit": "^2.0.0",
"@sveltejs/package": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^6.0.0",
"@types/node": "^22",
"svelte": "^5.0.0",
"svelte-check": "^4.0.0",
"ts-json-schema-generator": "^2.4.0",
"typescript": "^5",
"vite": "^6.3.0"
}
}