api-client/packages/hoppscotch-data/package.json
James George 5ac2ac40de
feat: add support for version bounded parsing and migration (#5127)
- CLI Collection runner enhancements:

  - Support mixed versions - child collections based on different versions compared to the parent collection.
  - Better support for incoming data via IDs conforming to older formats.

- Bump `verzod` across packages.
- Relevant updates to test suite.
- Bump `zod` under `selfhost-desktop`.
2025-06-05 14:51:19 +05:30

53 lines
1.4 KiB
JSON

{
"name": "@hoppscotch/data",
"version": "0.4.4",
"description": "Data Types, Validations and Migrations for Hoppscotch Public Data Structures",
"type": "module",
"main": "dist/hoppscotch-data.cjs",
"module": "dist/hoppscotch-data.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*"
],
"scripts": {
"dev": "vite build --watch",
"build:code": "vite build",
"build:decl": "tsc --project tsconfig.decl.json",
"build": "pnpm run build:code && pnpm run build:decl",
"prepare": "pnpm run build:code && pnpm run build:decl",
"do-typecheck": "pnpm exec tsc --noEmit"
},
"exports": {
".": {
"type": "./dist/index.d.ts",
"import": "./dist/hoppscotch-data.js",
"require": "./dist/hoppscotch-data.cjs"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoppscotch/hoppscotch.git"
},
"author": "Hoppscotch (support@hoppscotch.io)",
"license": "MIT",
"bugs": {
"url": "https://github.com/hoppscotch/hoppscotch/issues"
},
"homepage": "https://github.com/hoppscotch/hoppscotch#readme",
"devDependencies": {
"@types/lodash": "4.17.10",
"@types/uuid": "10.0.0",
"typescript": "5.8.3",
"vite": "5.4.9"
},
"dependencies": {
"fp-ts": "2.16.9",
"io-ts": "2.2.21",
"jose": "6.0.11",
"lodash": "4.17.21",
"parser-ts": "0.7.0",
"uuid": "10.0.0",
"verzod": "0.3.0",
"zod": "3.25.32"
}
}