-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 1 KB
/
package.json
File metadata and controls
36 lines (36 loc) · 1 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
{
"name": "@jsfns/docs",
"version": "1.0.0",
"description": "Documentation builder for @jsfns packages",
"private": true,
"author": "Toke Voltelen",
"license": "MIT",
"type": "module",
"scripts": {
"build-data": "tsx ./src/lib/doc-builder/build-data.ts",
"dev": "vite dev",
"build": "tsx ./src/lib/doc-builder/build-data.ts && vite build",
"preview": "pnpm build && vite preview",
"check": "biome check --error-on-warnings --write .",
"typecheck": "tsgo --noEmit"
},
"devDependencies": {
"@biomejs/biome": "^2.4.7",
"@jsfns/core": "latest",
"@jsfns/web": "latest",
"@sveltejs/adapter-static": "^3.0.10",
"@sveltejs/kit": "^2.55.0",
"@sveltejs/mcp": "^0.1.22",
"@sveltejs/vite-plugin-svelte": "^7.0.0",
"@types/node": "^25.5.0",
"@typescript/native-preview": "7.0.0-dev.20260313.1",
"highlight.js": "^11.11.1",
"marked": "^17.0.4",
"marked-highlight": "^2.2.3",
"svelte": "^5.53.11",
"tsx": "^4.21.0",
"typedoc": "^0.28.17",
"typescript": "^5.9.3",
"vite": "^8.0.0"
}
}