Files
hoppscotch/packages/hoppscotch-data/package.json
2024-10-24 03:25:55 +05:30

51 lines
1.3 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",
"typescript": "5.6.3",
"vite": "5.4.9"
},
"dependencies": {
"fp-ts": "2.16.9",
"io-ts": "2.2.21",
"lodash": "4.17.21",
"parser-ts": "0.7.0",
"verzod": "0.2.2",
"zod": "3.23.8"
}
}