mirror of
https://github.com/hoppscotch/hoppscotch
synced 2024-11-23 15:48:33 +00:00
0fcda0be1a
* feat: hopp ui initialized * feat: button components added * feat: windi css integration * chore: package removed from hopp ui * feat: storybook added * feat: move all smart components hoppscotch-ui * fix: import issue from components/smart * fix: env input component import * feat: add hoppui to windicss config * fix: remove storybook * feat: move components from hoppscotch-ui * feat: storybook added * feat: storybook progress * feat: themeing storybook * feat: add stories * chore: package updated * chore: stories added * feat: stories added * feat: stories added * feat: icons resolved * feat: i18n composable resolved * feat: histoire added * chore: resolved prettier issue * feat: radio story added * feat: story added for all components * feat: new components added to stories * fix: resolved issues * feat: readme.md added * feat: context/provider added * chore: removed app component registry * chore: remove importing of all components in hopp-ui to allow code splitting * chore: fix vite config errors * chore: jsdoc added * chore: any replaced with smart-item * chore: i18n added to ui components * chore: clean up - removed a duplicate button --------- Co-authored-by: Andrew Bastin <andrewbastin.k@gmail.com> Co-authored-by: Liyas Thomas <liyascthomas@gmail.com>
46 lines
1.3 KiB
JSON
46 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": {
|
|
"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.181",
|
|
"typescript": "^4.6.3",
|
|
"vite": "^3.2.3"
|
|
},
|
|
"dependencies": {
|
|
"fp-ts": "^2.11.10",
|
|
"io-ts": "^2.2.16",
|
|
"lodash": "^4.17.21",
|
|
"parser-ts": "^0.6.16"
|
|
}
|
|
}
|