package.json (hoppscotch-2.2.1) | : | package.json (hoppscotch-3.0.0) | ||
---|---|---|---|---|
{ | { | |||
"name": "@hoppscotch/data", | "name": "@hoppscotch/data", | |||
"version": "0.3.0", | "version": "0.4.3", | |||
"description": "Data Types, Validations and Migrations for Hoppscotch Public D ata Structures", | "description": "Data Types, Validations and Migrations for Hoppscotch Public D ata Structures", | |||
"main": "dist/index.js", | "type": "module", | |||
"module": "true", | "main": "dist/hoppscotch-data.cjs", | |||
"files": [ | "module": "dist/hoppscotch-data.js", | |||
"dist" | "types": "./dist/index.d.ts", | |||
], | "files": [ "dist/*" ], | |||
"scripts": { | "scripts": { | |||
"build": "tsup src --dts", | "build:code": "vite build", | |||
"prepare": "tsup src --dts" | "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": { | "exports": { | |||
".": "./dist/index.js", | ".": { | |||
"./graphql": "./dist/graphql/index.js", | "import": "./dist/hoppscotch-data.js", | |||
"./rest": "./dist/rest/index.js" | "require": "./dist/hoppscotch-data.cjs", | |||
"type": "./dist/index.d.ts" | ||||
} | ||||
}, | }, | |||
"repository": { | "repository": { | |||
"type": "git", | "type": "git", | |||
"url": "git+https://github.com/hoppscotch/hoppscotch.git" | "url": "git+https://github.com/hoppscotch/hoppscotch.git" | |||
}, | }, | |||
"author": "Hoppscotch (support@hoppscotch.io)", | "author": "Hoppscotch (support@hoppscotch.io)", | |||
"license": "MIT", | "license": "MIT", | |||
"bugs": { | "bugs": { | |||
"url": "https://github.com/hoppscotch/hoppscotch/issues" | "url": "https://github.com/hoppscotch/hoppscotch/issues" | |||
}, | }, | |||
"homepage": "https://github.com/hoppscotch/hoppscotch#readme", | "homepage": "https://github.com/hoppscotch/hoppscotch#readme", | |||
"devDependencies": { | "devDependencies": { | |||
"@types/lodash": "^4.14.178", | "@types/lodash": "^4.14.181", | |||
"tsup": "^5.11.11" | "typescript": "^4.6.3", | |||
"vite": "^3.1.0" | ||||
}, | }, | |||
"dependencies": { | "dependencies": { | |||
"lodash": "^4.17.21" | "fp-ts": "^2.11.10", | |||
"io-ts": "^2.2.16", | ||||
"lodash": "^4.17.21", | ||||
"parser-ts": "^0.6.16" | ||||
} | } | |||
} | } | |||
End of changes. 6 change blocks. | ||||
14 lines changed or deleted | 23 lines changed or added |