-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 2.57 KB
/
Copy pathpackage.json
File metadata and controls
54 lines (54 loc) · 2.57 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
{
"name": "litmdx-repo",
"version": "0.4.0",
"private": true,
"description": "Fast, modern open source documentation framework built on React + MDX + WebMCP",
"author": "nol4ej",
"license": "Apache-2.0",
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"dev": "pnpm run build:packages && concurrently -n core,cli,server -c blue,cyan,green --kill-others-on-fail \"pnpm --filter @litmdx/core dev\" \"pnpm --filter litmdx dev\" \"node packages/cli/dist/bin/cli.js dev\"",
"build": "pnpm run build:packages && node packages/cli/dist/bin/cli.js build",
"start": "pnpm dlx vite preview --outDir dist",
"build:packages": "pnpm --filter @litmdx/core build && pnpm --filter litmdx build && pnpm --filter create-litmdx build",
"lint": "pnpm --filter \"./packages/*\" lint",
"lint:fix": "pnpm --filter \"./packages/*\" lint:fix",
"format": "prettier --write \"packages/*/src/**\" \"packages/*/template/**\"",
"format:check": "prettier --check \"packages/*/src/**\" \"packages/*/template/**\"",
"test": "pnpm --filter \"@litmdx/core\" test && pnpm --filter \"litmdx\" test && pnpm --filter \"create-litmdx\" test",
"typecheck": "pnpm --filter \"litmdx\" typecheck && pnpm --filter \"@litmdx/core\" typecheck && pnpm --filter \"create-litmdx\" typecheck",
"clean": "rm -rf dist .litmdx node_modules packages/core/dist packages/core/node_modules packages/cli/dist packages/cli/node_modules packages/create-litmdx/dist packages/create-litmdx/node_modules",
"publish": "pnpm -r --filter './packages/*' publish --no-git-checks --access public",
"publish:dry": "pnpm -r --filter './packages/*' pack --dry-run",
"setup": "pnpm install && pnpm run build:packages",
"check": "pnpm run lint && pnpm run format:check && pnpm run build:packages && pnpm run typecheck && pnpm run publish:dry && pnpm run test"
},
"dependencies": {
"@litmdx/core": "workspace:*",
"canvas-confetti": "^1.9.4",
"litmdx": "workspace:*",
"mermaid": "^11.13.0",
"react": "^19.0.0",
"react-dom": "^19.0.0"
},
"keywords": [
"mdx",
"docs",
"documentation",
"react",
"vite"
],
"devDependencies": {
"@types/canvas-confetti": "^1.9.0",
"@typescript-eslint/eslint-plugin": "^8.57.2",
"@typescript-eslint/parser": "^8.57.2",
"concurrently": "^9.2.1",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"prettier": "^3.8.1"
},
"packageManager": "pnpm@10.32.1+sha512.a706938f0e89ac1456b6563eab4edf1d1faf3368d1191fc5c59790e96dc918e4456ab2e67d613de1043d2e8c81f87303e6b40d4ffeca9df15ef1ad567348f2be"
}