forked from ebullient/obsidian-theme-ebullientworks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 1.35 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
{
"name": "obsidian-theme-ebullientworks",
"version": "1.0.2",
"private": true,
"description": "An Obsidian Theme",
"author": "Erin Schnabel",
"license": "MIT",
"homepage": "https://github.com/ebullient",
"scripts": {
"build": "npx sass --no-source-map --stop-on-error src:dist",
"push": "node build-push.mjs",
"dev": "npm-run-all --parallel watch:scss watch:css",
"watch:scss": "npx sass --watch --embed-source-map src:dist",
"watch:css": "node build-dev.mjs",
"preversion": "npm run build",
"version": "auto-changelog -p && node .github/prerelease.mjs && cp -v dist/*.css .",
"release-notes": "run() { auto-changelog --stdout --hide-credit --hide-empty-releases --template .github/changelog.hbs -v $1 --starting-version $1 > release-notes.md; }; run",
"test-version": "auto-changelog -p && node .github/prerelease.mjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ebullient/obsidian-theme-ebullientworks.git"
},
"bugs": {
"url": "https://github.com/ebullient/obsidian-theme-ebullientworks/issues"
},
"devDependencies": {
"auto-changelog": "^2.5.0",
"chokidar": "^4.0.1",
"npm-run-all": "^4.1.5",
"sass": "^1.80.3"
},
"auto-changelog": {
"backfillLimit": false,
"commitLimit": false,
"ignoreCommitPattern": "(🔖|🔨|changelog|.* README\\.).*"
}
}