-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
63 lines (63 loc) · 2.49 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
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
{
"name": "breadcrum.net",
"description": "Breadcrum internet newspaper clippigns",
"version": "2025.1.7",
"type": "module",
"author": "Bret Comnes <[email protected]> (https://bret.io)",
"bugs": {
"url": "https://github.com/hifiwi-fi/breadcrum.net/issues"
},
"workspaces": [
"packages/*"
],
"devDependencies": {
"@voxpelli/tsconfig": "^15.0.0",
"auto-changelog": "^2.0.0",
"custompatch": "^1.1.4",
"dependency-cruiser": "^16.3.2",
"gh-release": "^7.0.0",
"knip": "^5.37.1",
"neostandard": "^0.12.0",
"npm-run-all2": "^7.0.1",
"typescript": "~5.7.2"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/bcomnes"
},
"homepage": "https://github.com/hifiwi-fi/breadcrum.net",
"keywords": [],
"license": "AGPL-3.0-or-later",
"private": true,
"repository": {
"type": "git",
"url": "https://github.com/hifiwi-fi/breadcrum.net.git"
},
"scripts": {
"clean": "rm -rf node_modules && rm -rf ./packages/*/node_modules && rm -f package-lock.json",
"prepublishOnly": "git push --follow-tags && gh-release -y",
"postinstall": "custompatch",
"release": "git push --follow-tags && gh-release -y",
"version": "run-s version:*",
"version:changelog": "auto-changelog -p --template keepachangelog auto-changelog --breaking-pattern 'BREAKING CHANGE:'",
"version:git": "git add CHANGELOG.md",
"test": "npm run test --workspaces --if-present",
"test-web": "npm run test --workspace=@breadcrum/web",
"test-worker": "npm run test --workspace=@breadcrum/worker",
"neostandard": "eslint .",
"watch": "FORCE_COLOR=1 run-p -n -l watch:*",
"watch:web": "npm run watch --workspace=@breadcrum/web",
"watch:worker": "npm run watch --workspace=@breadcrum/worker",
"build": "npm run build --workspaces --if-present",
"migrate": "npm run migrate --workspaces --if-present",
"start": "npm run watch",
"deploy": "run-s deploy:*",
"deploy:web": "flyctl deploy --config ./packages/web/fly.toml --dockerfile ./packages/web/Dockerfile",
"deploy:worker": "flyctl deploy --config ./packages/worker/fly.toml --dockerfile ./packages/worker/Dockerfile",
"knip": "knip --dependencies",
"deps": "depcruise . --include-only \"^packages\" --collapse 3 --output-type dot | dot -T svg > dependency-graph.svg",
"new-blogpost": "node scripts/create-blogpost.js --title",
"publish-draft": "node scripts/publish-blogpost.js",
"watch-tb": "npm run -w @breadcrum/web top-bun-watch"
}
}