Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
franklevasseur committed Jun 14, 2024
1 parent ad6eaba commit c49bb28
Show file tree
Hide file tree
Showing 2 changed files with 114 additions and 55 deletions.
76 changes: 49 additions & 27 deletions opapi/package.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,62 @@
{
"name": "@bpinternal/jex",
"version": "0.0.8",
"description": "JSON-Extends; JSON Schema type checking library",
"main": "dist/index.cjs",
"types": "dist/src/index.d.ts",
"name": "@bpinternal/opapi",
"version": "0.10.19",
"description": "",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build:node": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs",
"build:types": "tsc --emitDeclarationOnly",
"build": "pnpm build:node && pnpm build:types",
"test": "vitest --run",
"test": "vitest run",
"build": "tsup src/index.ts --dts --format cjs,esm --clean",
"check:type": "tsc --noEmit",
"check:format": "prettier --check .",
"fix:format": "prettier --write .",
"check": "pnpm check:format && pnpm check:type",
"fix": "pnpm fix:format"
"fix:format": "prettier --write ."
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/lodash": "^4.14.202",
"ajv": "^8.12.0",
"esbuild": "^0.21.0",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "5.3.3",
"vitest": "1.6.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4"
"@swc/core": "1.5.27",
"@swc/helpers": "0.5.11",
"@types/decompress": "4.2.7",
"@types/express": "4.17.21",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.0",
"@types/node": "18.19.34",
"@types/qs": "^6.9.15",
"@types/verror": "1.10.10",
"prettier": "3.3.1",
"ts-node": "10.9.2",
"tsup": "8.1.0",
"typescript": "5.4.5",
"vite": "5.2.13",
"vite-node": "1.6.0",
"vitest": "1.6.0"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.1.0",
"@types/json-schema": "^7.0.15",
"@anatine/zod-openapi": "1.12.1",
"@readme/openapi-parser": "2.6.0",
"axios": "1.7.2",
"chalk": "4.1.2",
"decompress": "4.2.1",
"execa": "8.0.1",
"json-schema-to-typescript": "13.1.2",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2"
"openapi-typescript": "6.7.6",
"openapi3-ts": "2.0.2",
"radash": "12.1.0",
"tsconfig-paths": "4.2.0",
"verror": "1.10.1",
"winston": "3.13.0",
"zod": "3.22.4"
},
"keywords": [],
"author": "Botpress, Inc.",
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"pnpm": "9.1.0"
Expand Down
93 changes: 65 additions & 28 deletions zui/package.json
Original file line number Diff line number Diff line change
@@ -1,40 +1,77 @@
{
"name": "@bpinternal/jex",
"version": "0.0.8",
"description": "JSON-Extends; JSON Schema type checking library",
"main": "dist/index.cjs",
"types": "dist/src/index.d.ts",
"name": "@bpinternal/zui",
"version": "0.8.4",
"description": "An extension of Zod for working nicely with UIs and JSON Schemas",
"type": "module",
"source": "./src/index.ts",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build:node": "esbuild src/index.ts --bundle --platform=node --format=cjs --outfile=dist/index.cjs",
"build:types": "tsc --emitDeclarationOnly",
"build": "pnpm build:node && pnpm build:types",
"test": "vitest --run",
"build": "tsup",
"watch": "tsup --watch",
"test": "vitest run",
"dev": "tsx playground.ts",
"test:watch": "vitest",
"check:type": "tsc --noEmit",
"check:format": "prettier --check .",
"fix:format": "prettier --write .",
"check": "pnpm check:format && pnpm check:type",
"fix": "pnpm fix:format"
"check:format": "prettier --check src/",
"fix:format": "prettier --write src/",
"storybook": "storybook dev -p 6006",
"build-storybook": "storybook build"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/lodash": "^4.14.202",
"@storybook/addon-essentials": "^8.0.9",
"@storybook/addon-interactions": "^8.0.9",
"@storybook/addon-links": "^8.0.9",
"@storybook/addon-onboarding": "^8.0.9",
"@storybook/blocks": "^8.0.9",
"@storybook/react": "^8.0.9",
"@storybook/react-vite": "^8.0.9",
"@storybook/test": "^8.0.9",
"@testing-library/jest-dom": "^6.4.2",
"@testing-library/react": "^14.2.2",
"@testing-library/user-event": "^14.5.2",
"@types/benchmark": "^2.1.5",
"@types/jest": "^29.5.12",
"@types/json-schema": "^7.0.15",
"@types/lodash": "^4.17.0",
"@types/node": "^20.12.6",
"@types/react": "^18.2.48",
"@vitejs/plugin-react-swc": "^3.6.0",
"ajv": "^8.12.0",
"esbuild": "^0.21.0",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "5.3.3",
"vitest": "1.6.0",
"zod": "^3.22.4",
"zod-to-json-schema": "^3.22.4"
"ajv-formats": "^3.0.1",
"benchmark": "^2.1.4",
"jsdom": "^24.0.0",
"local-ref-resolver": "^0.2.0",
"prettier": "^3.0.0",
"react-dom": "^18.2.0",
"storybook": "^8.0.9",
"tsup": "^8.0.1",
"tsx": "^4.7.2",
"typescript": "5.4.5",
"vite": "^5.2.6",
"vitest": "1.5.2",
"react": "^18.2.0"
},
"dependencies": {
"@apidevtools/json-schema-ref-parser": "^11.1.0",
"@types/json-schema": "^7.0.15",
"lodash": "^4.17.21",
"node-fetch": "^3.3.2"
"@apidevtools/json-schema-ref-parser": "^11.5.5",
"lodash": "^4.17.21"
},
"peerDependencies": {
"react": "^18.2.0"
},
"repository": {
"type": "git",
"url": "https://github.com/botpress/packages"
},
"keywords": [],
"author": "Botpress, Inc.",
"license": "MIT",
"engines": {
"node": ">=16.0.0",
"pnpm": "9.1.0"
Expand Down

0 comments on commit c49bb28

Please sign in to comment.