-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 2.65 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 2.65 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "github-up",
"version": "0.1.3",
"description": "Is GitHub down? Probably...",
"homepage": "https://github-up.kjanat.dev",
"bugs": {
"url": "https://github.com/kjanat/github-up/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kjanat/github-up.git"
},
"license": "MIT",
"author": "Kaj Kowalski <info@kajkowalski.nl> (https://github.com/kjanat)",
"keywords": [
"github",
"cli",
"downdetector",
"dreamcli",
"statuspage",
"ansispeck"
],
"type": "module",
"jsdelivr": "./dist/browser/browser.js",
"imports": {
"#github-up": "./src/index.ts",
"#github-up/cli": "./src/cli/index.ts",
"#github-up/browser": "./src/browser.ts",
"#github-up/types": "./src/lib/types.ts",
"#github-up/*": "./src/*.ts",
"#demo/*": "./demo/*.ts",
"#pkg": "./package.json",
"#test/*": "./test/*"
},
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./browser": {
"types": "./dist/browser/browser.d.ts",
"default": "./dist/browser/browser.js"
},
"./package.json": "./package.json"
},
"bin": {
"github-up": "dist/bin/cli.mjs"
},
"files": [
"dist",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"bd": "runner build",
"build": "bun --bun build.ts",
"build:watch": "runner build --watch",
"check": "biome check",
"fmt": "bunx dprint fmt",
"lint": "biome lint",
"local": "bun run build -l warn && bun link",
"prepublishOnly": "bun run build -l warn",
"publishChecks": "e18e-cli analyze; attw; bunx publint --pack bun --strict",
"test": "bun test",
"typecheck": "tsc --noEmit",
"dev": "runner build:watch",
"preview": "bun start",
"site:build": "runner build",
"prestart": "runner build",
"start": "bunx serve dist/site",
"publish:npm": "npm view \"$(jq -r '\"\\(.name)@\\(.version)\"' package.json)\" version >/dev/null 2>&1 && echo already published, skipping || bunx npm@11 publish",
"publish:pkg-pr-new": "bunx pkg-pr-new publish --bun --bin --packageManager=npm,bun,pnpm"
},
"dependencies": {
"@kjanat/dreamcli": "^3.0.0-rc.8",
"ansispeck": "^0.1.2"
},
"devDependencies": {
"@biomejs/biome": ">=2.5,<2.5.3",
"@types/bun": "^1.3",
"@types/node": "^26",
"runner-run": "^0.19.1",
"statuspage.io": "^3.5",
"tsdown": "^0.22",
"typescript": "^7"
},
"packageManager": "bun@1.3.14",
"engines": {
"bun": ">=1.3",
"node": ">=22.18"
},
"devEngines": {
"packageManager": [
{
"name": "bun",
"onFail": "warn"
}
],
"runtime": [
{
"name": "bun",
"onFail": "ignore"
}
]
},
"volta": {
"node": "26.5.0",
"npm": "11.18.0"
},
"publishConfig": {
"access": "public",
"tag": "latest"
}
}