-
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 2.17 KB
/
Copy pathpackage.json
File metadata and controls
59 lines (59 loc) · 2.17 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
{
"name": "breadcrum.net",
"description": "Breadcrum internet newspaper clippigns",
"version": "2026.7.5",
"type": "module",
"author": "Bret Comnes <bcomnes@gmail.com> (https://bret.io)",
"bugs": {
"url": "https://github.com/hifiwi-fi/breadcrum.net/issues"
},
"engines": {
"node": ">=26.0.0"
},
"devDependencies": {
"@sentry/cli": "^3.5.1",
"knip": "^6.7.0",
"neostandard": "^0.13.0",
"npm-run-all2": "^9.0.2",
"releasearoni": "^0.2.0"
},
"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": "releasearoni --no-npm-check --no-build",
"release": "releasearoni --no-npm-check --no-build",
"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-all": "run-s deploy:*",
"deploy:web": "./scripts/deploy-with-sentry.sh ./packages/web/fly.toml ./packages/web/Dockerfile",
"deploy:worker": "./scripts/deploy-with-sentry.sh ./packages/worker/fly.toml ./packages/worker/Dockerfile",
"sentry:login": "sentry-cli login",
"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"
}
}