-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2.01 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
{
"name": "@faststats/cli",
"version": "0.1.0",
"module": "src/index.ts",
"type": "module",
"bin": {
"faststats": "./bin/faststats.cjs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/faststats-dev/CLI.git"
},
"publishConfig": {
"access": "public"
},
"files": [
"bin/faststats.cjs",
"README.md",
"CHANGELOG.md"
],
"scripts": {
"changeset": "changeset",
"version-packages": "changeset version",
"release": "bun run build:all && bun run scripts/publish.ts",
"build": "bun run scripts/build.ts",
"build:all": "bun run scripts/build-all.ts",
"check": "biome check .",
"typecheck": "tsc --noEmit",
"completions:fish": "./faststats --completions fish",
"completions:zsh": "./faststats --completions zsh",
"completions:bash": "./faststats --completions bash",
"install:completions": "bun run scripts/install-completions.ts fish",
"install:completions:zsh": "bun run scripts/install-completions.ts zsh",
"install:completions:bash": "bun run scripts/install-completions.ts bash",
"download-openapi": "curl -o openapi.json http://localhost:4000/openapi.json",
"generate": "openapigen --spec openapi.json --format httpclient --name Api > src/api.ts"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@changesets/cli": "^2.31.0",
"@effect/openapi-generator": "^4.0.0-beta.76",
"@effect/platform-bun": "^4.0.0-beta.76",
"@opentui/core": "^0.3.1",
"@opentui/core-darwin-arm64": "0.3.1",
"@opentui/core-darwin-x64": "0.3.1",
"@opentui/core-linux-arm64": "0.3.1",
"@opentui/core-linux-x64": "0.3.1",
"@opentui/core-win32-arm64": "0.3.1",
"@opentui/core-win32-x64": "0.3.1",
"@opentui/solid": "^0.4.0",
"@types/bun": "latest",
"@types/geojson": "^7946.0.16",
"@types/topojson-client": "^3.1.5",
"@types/topojson-specification": "^1.0.5",
"effect": "^4.0.0-beta.76",
"knip": "^6.15.0",
"pkg-pr-new": "^0.0.75",
"solid-js": "^1.9.13",
"topojson-client": "^3.1.0",
"world-atlas": "^2.0.2"
},
"peerDependencies": {
"typescript": "^5 || ^6.0.0"
}
}