mirror of
https://github.com/scotttomaszewski/obsidian-disciples-journal.git
synced 2026-07-22 12:20:30 +00:00
31 lines
989 B
JSON
31 lines
989 B
JSON
{
|
|
"$schema": "https://raw.githubusercontent.com/jetify-com/devbox/0.17.2/.schema/devbox.schema.json",
|
|
"packages": [
|
|
"nodejs@22",
|
|
"just@latest",
|
|
"github-cli@latest",
|
|
"jq@latest"
|
|
],
|
|
"shell": {
|
|
"init_hook": [
|
|
"npm install --no-audit --no-fund"
|
|
],
|
|
"scripts": {
|
|
"build": [
|
|
"npm run build"
|
|
],
|
|
"dev": [
|
|
"npm run dev"
|
|
],
|
|
"test": [
|
|
"npm run test"
|
|
],
|
|
"release": [
|
|
"just release $@"
|
|
],
|
|
"run": [
|
|
"$@"
|
|
]
|
|
}
|
|
}
|
|
}
|