-
Notifications
You must be signed in to change notification settings - Fork 64
/
package.json
65 lines (65 loc) · 1.95 KB
/
package.json
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
{
"name": "@rehype-pretty/monorepo",
"description": "Beautiful code for your MD/MDX docs.",
"homepage": "https://rehype-pretty.pages.dev",
"repository": "github:rehype-pretty/rehype-pretty-code",
"private": true,
"type": "module",
"scripts": {
"build": "turbo build",
"dev": "turbo dev",
"test": "vitest --run",
"format": "biome format . --error-on-warnings --log-level='info' --diagnostic-level='info' --write",
"lint": "biome lint . --log-level='info' --log-kind='pretty' --diagnostic-level='info' --apply-unsafe",
"format:markdown": "markdownlint-cli2 '**/*.md' '#**/node_modules' '#**/test'",
"lint:repo": "pnpm dlx sherif@latest --ignore-dependency tailwindcss",
"changeset": "changeset",
"changeset:version": "changeset version && pnpm install --lockfile-only",
"changeset:publish": "changeset publish",
"typecheck": "turbo run typecheck",
"check-package": "turbo check-package",
"clean": "turbo clean",
"clean-full": "/bin/bash ./scripts/clean.sh"
},
"devDependencies": {
"@biomejs/biome": "^1.8.2",
"@changesets/cli": "^2.27.6",
"@total-typescript/ts-reset": "^0.5.1",
"@types/bun": "^1.1.5",
"@types/node": "^20.14.9",
"bun": "^1.1.17",
"markdownlint-cli2": "^0.13.0",
"simple-git-hooks": "^2.11.1",
"turbo": "^2.0.5",
"typescript": "^5.5.2"
},
"engines": {
"node": ">=20",
"pnpm": ">=9"
},
"simple-git-hooks": {
"pre-commit": "pnpm format && pnpm lint && pnpm lint:repo && pnpm typecheck"
},
"packageManager": "[email protected]",
"author": "https://github.com/atomiks",
"contributors": [
"atomiks (https://github.com/atomiks)",
"o-az (https://github.com/o-az)"
],
"maintainers": [
{
"name": "atomiks",
"url": "https://github.com/atomiks"
},
{
"name": "o-az",
"url": "https://github.com/o-az"
}
],
"license": "MIT",
"pnpm": {
"peerDependencyRules": {
"allowAny": ["svelte"]
}
}
}