@gabrielbryk/jq-ts 1.1.0 → 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1840 -534
- package/dist/index.d.cts +171 -3
- package/dist/index.d.cts.map +1 -1
- package/dist/index.d.mts +171 -3
- package/dist/index.d.mts.map +1 -1
- package/dist/index.mjs +1840 -534
- package/dist/index.mjs.map +1 -1
- package/package.json +26 -33
package/package.json
CHANGED
|
@@ -1,37 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@gabrielbryk/jq-ts",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.2.0",
|
|
4
4
|
"description": "Deterministic TypeScript implementation of a jq subset for workflow isolates",
|
|
5
5
|
"main": "dist/index.cjs",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
7
7
|
"types": "dist/index.d.mts",
|
|
8
8
|
"license": "MIT",
|
|
9
|
-
"scripts": {
|
|
10
|
-
"dev": "vitest",
|
|
11
|
-
"build": "tsdown",
|
|
12
|
-
"clean": "rimraf dist coverage docs .turbo node_modules/.cache",
|
|
13
|
-
"typecheck": "tsc --noEmit",
|
|
14
|
-
"typecheck:watch": "tsc --noEmit --watch",
|
|
15
|
-
"format:write": "prettier --write .",
|
|
16
|
-
"format:check": "prettier --check .",
|
|
17
|
-
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
|
|
18
|
-
"lint": "eslint .",
|
|
19
|
-
"lint:fix": "eslint . --fix",
|
|
20
|
-
"test": "vitest run",
|
|
21
|
-
"test:coverage": "vitest run --coverage",
|
|
22
|
-
"test:watch": "vitest",
|
|
23
|
-
"audit": "pnpm audit --audit-level=moderate",
|
|
24
|
-
"size": "size-limit",
|
|
25
|
-
"size:why": "size-limit --why",
|
|
26
|
-
"docs": "typedoc",
|
|
27
|
-
"docs:watch": "typedoc --watch",
|
|
28
|
-
"local-release": "changeset version && changeset publish",
|
|
29
|
-
"release": "changeset publish",
|
|
30
|
-
"prepublishOnly": "pnpm run ci",
|
|
31
|
-
"ci": "pnpm run build && pnpm run format:check && pnpm run check-exports && pnpm run lint && pnpm run test",
|
|
32
|
-
"prepare": "husky",
|
|
33
|
-
"lint-staged": "lint-staged"
|
|
34
|
-
},
|
|
35
9
|
"keywords": [
|
|
36
10
|
"jq",
|
|
37
11
|
"json",
|
|
@@ -91,12 +65,31 @@
|
|
|
91
65
|
}
|
|
92
66
|
}
|
|
93
67
|
},
|
|
94
|
-
"pnpm": {
|
|
95
|
-
"onlyBuiltDependencies": [
|
|
96
|
-
"esbuild"
|
|
97
|
-
]
|
|
98
|
-
},
|
|
99
68
|
"peerDependencies": {
|
|
100
69
|
"typescript": "^5.0.0"
|
|
70
|
+
},
|
|
71
|
+
"scripts": {
|
|
72
|
+
"dev": "vitest",
|
|
73
|
+
"build": "tsdown",
|
|
74
|
+
"clean": "rimraf dist coverage docs .turbo node_modules/.cache",
|
|
75
|
+
"typecheck": "tsc --noEmit",
|
|
76
|
+
"typecheck:watch": "tsc --noEmit --watch",
|
|
77
|
+
"format:write": "prettier --write .",
|
|
78
|
+
"format:check": "prettier --check .",
|
|
79
|
+
"check-exports": "attw --pack . --ignore-rules=cjs-resolves-to-esm",
|
|
80
|
+
"lint": "eslint .",
|
|
81
|
+
"lint:fix": "eslint . --fix",
|
|
82
|
+
"test": "vitest run",
|
|
83
|
+
"test:coverage": "vitest run --coverage",
|
|
84
|
+
"test:watch": "vitest",
|
|
85
|
+
"audit": "pnpm audit --audit-level=moderate",
|
|
86
|
+
"size": "size-limit",
|
|
87
|
+
"size:why": "size-limit --why",
|
|
88
|
+
"docs": "typedoc",
|
|
89
|
+
"docs:watch": "typedoc --watch",
|
|
90
|
+
"local-release": "changeset version && changeset publish",
|
|
91
|
+
"release": "changeset publish",
|
|
92
|
+
"ci": "pnpm run build && pnpm run format:check && pnpm run check-exports && pnpm run lint && pnpm run test",
|
|
93
|
+
"lint-staged": "lint-staged"
|
|
101
94
|
}
|
|
102
|
-
}
|
|
95
|
+
}
|