This repository was archived by the owner on Sep 8, 2025. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.32 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.32 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
68
69
70
71
72
{
"name": "solstatus",
"version": "2.1.0",
"description": "Self host a low-cost, globally-distributed uptime monitoring service on Cloudflare",
"keywords": [
"solstatus",
"uptime",
"monitoring",
"cloudflare"
],
"homepage": "https://github.com/unibeck/solstatus#readme",
"bugs": {
"url": "https://github.com/unibeck/solstatus/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/unibeck/solstatus.git"
},
"license": "MIT",
"type": "module",
"packageManager": "pnpm@10.12.1",
"bin": {
"solstatus": "./src/index.ts"
},
"imports": {
"@/*": "./src/*"
},
"exports": {
".": "./src/index.ts"
},
"files": [
"src",
"README.md",
"LICENSE"
],
"scripts": {
"preinstall": "npx only-allow pnpm",
"prepublishOnly": "pnpm run build",
"cli": "tsx ./src/index.ts",
"dev": "concurrently --kill-others --names \"API,APP\" --prefix-colors \"bgWhite,bgWhiteBright\" \"pnpm dev:api\" \"wait-on http://localhost:8788 && pnpm dev:app\"",
"dev:app": "pnpm run --filter '@solstatus/app' dev",
"dev:api": "pnpm run --filter '@solstatus/api' dev",
"db:setup": "pnpm run --filter '@solstatus/infra' db:setup",
"deploy:prod": "pnpm deploy:prod:api && pnpm deploy:prod:app",
"deploy:prod:app": "pnpm run --filter '@solstatus/app' deploy:prod",
"deploy:prod:api": "pnpm run --filter '@solstatus/api' deploy:prod",
"format": "biome check . --write",
"clean": "rm -rf ./node_modules/ ./packages/*/node_modules/ ./dist/ ./packages/*/dist/",
"clean:builds": "rm -rf ./dist/ ./packages/*/dist/",
"build": "tsc --build",
"types": "tsc",
"types:each": "pnpm run --filter '@solstatus/common' types && pnpm run --filter '@solstatus/api' types && pnpm run --filter '@solstatus/app' types && pnpm run --filter '@solstatus/infra' types"
},
"dependencies": {
"@effect/cli": "^0.66.4",
"@effect/platform-node": "^0.88.6",
"@solstatus/infra": "workspace:*",
"dotenv": "catalog:",
"effect": "^3.16.11"
},
"devDependencies": {
"@biomejs/biome": "catalog:",
"@cloudflare/workers-types": "catalog:",
"@types/node": "catalog:",
"concurrently": "catalog:",
"release-please": "^17.1.1",
"tsx": "catalog:",
"typescript": "catalog:",
"wait-on": "catalog:",
"wrangler": "catalog:"
}
}