-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "barista",
"private": true,
"type": "module",
"version": "0.0.0",
"description": "A tiny, native macOS menu bar app that keeps your Mac awake — a free replacement for Caffeine, Amphetamine and KeepingYouAwake.",
"author": "Chris Breuer <chris@stacksjs.org>",
"license": "MIT",
"homepage": "https://github.com/stacksjs/barista#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/stacksjs/barista.git"
},
"bugs": {
"url": "https://github.com/stacksjs/barista/issues"
},
"keywords": [
"barista",
"caffeinate",
"caffeine",
"amphetamine",
"keep-awake",
"prevent-sleep",
"menubar",
"menu-bar",
"management",
"app",
"macos",
"mac"
],
"scripts": {
"dev": "bun --bun run app.ts",
"build": "bun --bun run build.ts",
"lint": "bunx --bun pickier .",
"lint:fix": "bunx --bun pickier . --fix",
"format": "bunx --bun pickier . --format",
"format:fix": "bunx --bun pickier . --format --write",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"changelog": "bunx --bun logsmith --output CHANGELOG.md",
"release": "bunx --bun bumpx prompt --recursive",
"release:patch": "bunx --bun bumpx patch --recursive --commit --tag --push --yes",
"release:minor": "bunx --bun bumpx minor --recursive --commit --tag --push --yes",
"release:major": "bunx --bun bumpx major --recursive --commit --tag --push --yes",
"test": "bun test",
"dev:docs": "bun --bun vitepress dev docs",
"build:docs": "bun --bun vitepress build docs",
"preview:docs": "bun --bun vitepress preview docs",
"typecheck": "bunx --bun tsc --noEmit"
},
"dependencies": {
"@stacksjs/stx": "^0.2.120"
},
"devDependencies": {
"better-dx": "^0.2.15",
"@stacksjs/bumpx": "^0.2.14"
},
"git-hooks": {
"pre-commit": {
"staged-lint": {
"*.{js,ts,json,yaml,yml,md}": "bunx --bun pickier lint --fix"
}
},
"commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
}
}