12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- {
- "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": {
- "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": {
- ".": {
- "import": "./dist/hoppscotch-data.js",
- "require": "./dist/hoppscotch-data.cjs",
- "type": "./dist/index.d.ts"
- }
- },
- "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.14.200",
- "typescript": "^5.2.2",
- "vite": "^4.5.0"
- },
- "dependencies": {
- "fp-ts": "^2.16.1",
- "io-ts": "^2.2.20",
- "lodash": "^4.17.21",
- "parser-ts": "^0.7.0",
- "verzod": "^0.2.2",
- "zod": "^3.22.4"
- }
- }
|