-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.91 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.91 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
{
"name": "barista",
"private": true,
"type": "module",
"version": "0.0.0",
"description": "A lightweight macOS utility that serves up a perfectly organized menubar.",
"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",
"menubar",
"management",
"app",
"mac"
],
"scripts": {
"build": "xcodebuild -project src/Barista.xcodeproj -scheme Barista -configuration Release CONFIGURATION_BUILD_DIR=$(pwd)/dist",
"package": "rm -rf ./dist/Barista.dmg && create-dmg --volname \"Barista\" --window-pos 200 120 --window-size 800 500 --background ./src/assets/dmg-bg.jpg --icon-size 128 --app-drop-link 600 250 --icon \"Barista.app\" 200 250 ./dist/Barista.dmg ./dist/Barista.app",
"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 changelogen --output CHANGELOG.md",
"prepublishOnly": "bun --bun run build",
"release": "bun --bun run changelog && bunx --bun bumpp package.json --all",
"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": "echo 'No TypeScript source files to check'"
},
"devDependencies": {
"better-dx": "^0.2.7",
"bumpp": "^10.1.0"
},
"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"
}
}