2021-11-23 19:50:07 +00:00
|
|
|
{
|
|
|
|
|
"name": "@hoppscotch/data",
|
2022-10-03 09:21:10 +00:00
|
|
|
"version": "0.4.4",
|
2021-11-23 19:50:07 +00:00
|
|
|
"description": "Data Types, Validations and Migrations for Hoppscotch Public Data Structures",
|
2022-09-29 05:25:21 +00:00
|
|
|
"type": "module",
|
|
|
|
|
"main": "dist/hoppscotch-data.cjs",
|
|
|
|
|
"module": "dist/hoppscotch-data.js",
|
|
|
|
|
"types": "./dist/index.d.ts",
|
2023-11-02 13:24:16 +00:00
|
|
|
"files": [
|
|
|
|
|
"dist/*"
|
|
|
|
|
],
|
2021-11-23 19:50:07 +00:00
|
|
|
"scripts": {
|
2024-03-22 12:41:16 +00:00
|
|
|
"dev": "vite build --watch",
|
2022-09-29 05:25:21 +00:00
|
|
|
"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",
|
2022-05-03 07:09:56 +00:00
|
|
|
"do-typecheck": "pnpm exec tsc --noEmit"
|
2021-11-23 19:50:07 +00:00
|
|
|
},
|
|
|
|
|
"exports": {
|
2022-09-29 05:25:21 +00:00
|
|
|
".": {
|
2024-10-23 21:55:55 +00:00
|
|
|
"type": "./dist/index.d.ts",
|
2022-09-29 05:25:21 +00:00
|
|
|
"import": "./dist/hoppscotch-data.js",
|
2024-10-23 21:55:55 +00:00
|
|
|
"require": "./dist/hoppscotch-data.cjs"
|
2022-09-29 05:25:21 +00:00
|
|
|
}
|
2021-11-23 19:50:07 +00:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/hoppscotch/hoppscotch.git"
|
|
|
|
|
},
|
2022-01-24 00:14:10 +00:00
|
|
|
"author": "Hoppscotch (support@hoppscotch.io)",
|
2021-11-23 19:50:07 +00:00
|
|
|
"license": "MIT",
|
|
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/hoppscotch/hoppscotch/issues"
|
|
|
|
|
},
|
|
|
|
|
"homepage": "https://github.com/hoppscotch/hoppscotch#readme",
|
|
|
|
|
"devDependencies": {
|
2024-10-23 21:55:55 +00:00
|
|
|
"@types/lodash": "4.17.10",
|
2024-11-26 10:26:09 +00:00
|
|
|
"@types/uuid": "10.0.0",
|
2025-05-28 10:11:47 +00:00
|
|
|
"typescript": "5.8.3",
|
2024-10-23 21:55:55 +00:00
|
|
|
"vite": "5.4.9"
|
2022-01-05 10:43:13 +00:00
|
|
|
},
|
|
|
|
|
"dependencies": {
|
2024-10-23 21:55:55 +00:00
|
|
|
"fp-ts": "2.16.9",
|
|
|
|
|
"io-ts": "2.2.21",
|
2025-06-05 09:21:19 +00:00
|
|
|
"jose": "6.0.11",
|
2024-03-07 18:07:48 +00:00
|
|
|
"lodash": "4.17.21",
|
|
|
|
|
"parser-ts": "0.7.0",
|
2024-11-26 10:26:09 +00:00
|
|
|
"uuid": "10.0.0",
|
2025-06-05 09:21:19 +00:00
|
|
|
"verzod": "0.3.0",
|
2025-05-28 10:11:47 +00:00
|
|
|
"zod": "3.25.32"
|
2021-11-23 19:50:07 +00:00
|
|
|
}
|
2024-03-22 12:41:16 +00:00
|
|
|
}
|