Skip to content

Commit 77e4331

Browse files
Merge pull request #28909 from davesnx/release-query-json-0.5.52
[new release] query-json (0.5.52)
2 parents fd7e35d + 7b016d4 commit 77e4331

File tree

1 file changed

+54
-0
lines changed
  • packages/query-json/query-json.0.5.52

1 file changed

+54
-0
lines changed
Lines changed: 54 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,54 @@
1+
opam-version: "2.0"
2+
synopsis: "Faster, simpler and more portable implementation of `jq` in OCaml"
3+
description: """
4+
query-json is a faster and simpler re-implementation of jq's language in OCaml, compiled to a native binary (query-json) and as a JavaScript library (query-json-js).
5+
6+
query-json is a CLI to run small programs against JSON, the same idea as sed but for JSON files.
7+
8+
Play with it in the online playground: https://query-json.netlify.app"""
9+
maintainer: ["David Sancho <[email protected]>"]
10+
authors: ["David Sancho <[email protected]>"]
11+
license: "MIT"
12+
homepage: "https://github.com/davesnx/query-json"
13+
bug-reports: "https://github.com/davesnx/query-json/issues"
14+
depends: [
15+
"ocaml" {>= "4.13.0"}
16+
"dune" {>= "3.17"}
17+
"dune-build-info"
18+
"menhir" {>= "20250903"}
19+
"cmdliner" {>= "2.0.0"}
20+
"yojson" {>= "3.0.0"}
21+
"sedlex"
22+
"ppx_deriving"
23+
"easy-format"
24+
"alcotest" {with-test}
25+
"ocamlformat" {with-dev-setup}
26+
"ocaml-lsp-server" {with-dev-setup}
27+
"odoc" {with-doc}
28+
]
29+
build: [
30+
["dune" "subst"] {dev}
31+
[
32+
"dune"
33+
"build"
34+
"-p"
35+
name
36+
"-j"
37+
jobs
38+
"@install"
39+
"@runtest" {with-test}
40+
"@doc" {with-doc}
41+
]
42+
]
43+
dev-repo: "git+https://github.com/davesnx/query-json.git"
44+
conflicts: [ "ocaml-option-bytecode-only" ] # This ensures that the project is only built with the native compiler
45+
x-maintenance-intent: ["(latest)"]
46+
url {
47+
src:
48+
"https://github.com/davesnx/query-json/releases/download/0.5.52/query-json-0.5.52.tbz"
49+
checksum: [
50+
"sha256=045832458e20ae90f7bb14536e27aa5e4c5528968ac48ac390409a66fe6b438e"
51+
"sha512=9d4af4a9c8f5b2f4fb84830f0651ba4400f32e97bdec1e61378780906077af80d5679f9ccf545a072c1ffbe70a18ca4b3dd57b79d02384384068ee695d67e4ac"
52+
]
53+
}
54+
x-commit-hash: "a7a7fa294095619aac83b38fc46b4e1dfbe62850"

0 commit comments

Comments
 (0)