-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.19 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.19 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
{
"name": "rspress-language-tabs-monorepo",
"version": "1.0.0",
"private": true,
"description": "Monorepo for rspress-language-tabs plugin and documentation",
"license": "MIT",
"author": "Andrew MacCuaig <andrewmaccuaig@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/maccuaa/rspress-language-tabs.git"
},
"workspaces": [
"packages/*"
],
"catalog": {
"@rspress/core": "2.0.8",
"react": "19.2.0",
"react-dom": "19.2.0"
},
"scripts": {
"build": "bun run --filter rspress-language-tabs build",
"build:all": "bun run --filter '*' build",
"dev": "bun run --filter rspress-language-tabs dev",
"lint": "bun run lint:js && bun run lint:md",
"lint:js": "biome ci .",
"lint:commits": "commitlint --from-last-tag --to HEAD --verbose",
"lint:md": "prettier --check '**/*.{md,mdx}'",
"format": "bun run format:biome && bun run format:prettier",
"format:biome": "biome format --write .",
"format:prettier": "prettier --write '**/*.{md,mdx}'"
},
"devDependencies": {
"@biomejs/biome": "2.4.12",
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"prettier": "3.8.3"
}
}