-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
67 lines (67 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
67 lines (67 loc) · 2.14 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
66
67
{
"name": "pantry",
"type": "module",
"version": "0.10.4",
"private": true,
"description": "A performant, universal package manager. Like Homebrew, but faster.",
"author": "Chris Breuer <chris@stacksjs.com>",
"license": "MIT",
"homepage": "https://github.com/pantry-pm/pantry#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/pantry-pm/pantry.git"
},
"bugs": {
"url": "https://github.com/pantry-pm/pantry/issues"
},
"keywords": [
"homebrew",
"pkgx",
"bun",
"package"
],
"scripts": {
"build": "for dir in packages/*; do if [ -f \"$dir/package.json\" ]; then echo \"Building $dir\" && bun run --cwd $dir build; fi; done",
"fresh": "bunx rimraf node_modules/ bun.lock && bun i",
"test": "bun test",
"lint": "bunx --bun pickier .",
"lint:fix": "bunx --bun pickier . --fix",
"format": "bunx --bun pickier . --format",
"format:fix": "bunx --bun pickier . --format --write",
"format:check": "pickier run --mode format --check",
"changelog": "bunx --bun logsmith --verbose",
"changelog:generate": "bunx --bun logsmith --output CHANGELOG.md",
"release": "bunx --bun bumpx prompt --recursive",
"release:patch": "bunx --bun bumpx patch --recursive --yes",
"release:minor": "bunx --bun bumpx minor --recursive --yes",
"publish:oidc": "./scripts/publish-oidc.sh",
"publish:dry-run": "./scripts/publish-oidc.sh --dry-run",
"dev:docs": "bun bunpress dev docs",
"build:docs": "bun bunpress build docs",
"preview:docs": "bun bunpress preview docs",
"typecheck": "bun --bun tsc --noEmit"
},
"trustedDependencies": [
"bun"
],
"devDependencies": {
"better-dx": "^0.2.15"
},
"git-hooks": {
"pre-commit": {
"staged-lint": {
"*.{zig}": "bash -c '[[ $0 != *generated.zig ]] && zig fmt --check $0 || true'",
"*.{js,ts,json,yaml,yml,md}": "pickier run --mode lint --fix"
}
},
"commit-msg": "bunx gitlint --edit .git/COMMIT_EDITMSG"
},
"workspaces": [
"packages/*"
],
"dependencies": {
"@cwcss/crosswind": "^0.2.6",
"@stacksjs/stx": "^0.2.72",
"@stacksjs/ts-cloud": "^0.5.19"
}
}