-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.05 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.05 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
{
"name": "starlight-theme-obsidian",
"version": "0.4.1",
"license": "MIT",
"description": "A Starlight theme inspired by the Obsidian Publish website theme",
"author": "Fevol",
"type": "module",
"engines": {
"node": ">=18"
},
"private": true,
"sideEffects": false,
"workspaces": [
"packages/*",
"docs/"
],
"keywords": [
"starlight",
"plugin",
"theme",
"obsidian",
"graph",
"astro",
"withastro"
],
"homepage": "https://github.com/fevol/starlight-theme-obsidian",
"repository": {
"type": "git",
"url": "https://github.com/fevol/starlight-theme-obsidian.git"
},
"bugs": "https://github.com/fevol/starlight-theme-obsidian/issues",
"scripts": {
"format": "prettier --write .",
"release-beta": "bun run scripts/bump-version.ts beta",
"release-patch": "bun run scripts/bump-version.ts patch",
"release-minor": "bun run scripts/bump-version.ts minor",
"release-major": "bun run scripts/bump-version.ts major"
},
"dependencies": {
"@types/node": "^22.15.3",
"prettier": "^3.5.3"
},
"overrides": {
"picomatch": "^4.0.3"
}
}