-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.12 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 2.12 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
{
"name": "breadcrum.net",
"description": "Breadcrum internet newspaper clippigns",
"version": "2026.2.7",
"type": "module",
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io)",
"bugs": {
"url": "https://github.com/hifiwi-fi/breadcrum.net/issues"
},
"engines": {
"node": ">=24.0.0"
},
"devDependencies": {
"releasearoni": "^0.1.0",
"knip": "^6.7.0",
"neostandard": "^0.12.0",
"npm-run-all2": "^8.0.1"
},
"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 pnpm-lock.yaml",
"prepublishOnly": "git push --follow-tags && releasearoni -y",
"release": "git push --follow-tags && releasearoni -y",
"version": "releasearoni version",
"test": "run-s test:*",
"test:all": "pnpm run --workspace-concurrency=1 -r test",
"test:knip": "pnpm run knip",
"test-web": "pnpm run --filter @breadcrum/web test",
"test-worker": "pnpm run --filter @breadcrum/worker test",
"test-resources": "pnpm run --filter @breadcrum/resources test",
"neostandard": "eslint .",
"watch": "FORCE_COLOR=1 run-p -n -l watch:*",
"watch:web": "pnpm run --filter @breadcrum/web watch",
"watch:worker": "pnpm run --filter @breadcrum/worker watch",
"build": "pnpm run -r build",
"migrate": "pnpm run -r migrate",
"start": "pnpm 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",
"new-blogpost": "node scripts/create-blogpost.js --title",
"publish-draft": "node scripts/publish-blogpost.js",
"watch-tb": "pnpm run --filter @breadcrum/web domstack-watch"
}
}