Skip to content

Commit

Permalink
Merge pull request #19 from amir78729/refactor/ui
Browse files Browse the repository at this point in the history
Refactor/UI
  • Loading branch information
amir78729 authored Aug 4, 2024
2 parents a3c2aca + 7808fbe commit 00ad615
Show file tree
Hide file tree
Showing 22 changed files with 543 additions and 361 deletions.
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -38,4 +38,5 @@ packages/react-devtools-inline/dist
packages/react-devtools-shell/dist
packages/react-devtools-timeline/dist
storybook-static/
lib
lib
dist
2 changes: 1 addition & 1 deletion Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<img src="https://github.com/user-attachments/assets/109edb2d-a05b-4063-9c84-2d42c3951666" alt="schema builder logo, a combination of S and B characters in a blue palette" height="100px" />

[![npm](https://img.shields.io/npm/v/schemabuilder)](https://www.npmjs.com/package/schemaBuilder)
[![npm](https://img.shields.io/npm/v/schema-saz)](https://www.npmjs.com/package/schema-saz)


# Schema Builder
Expand Down
34 changes: 30 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
{
"name": "schemabuilder",
"name": "schema-saz",
"version": "0.0.0",
"description": "A Simple User Interface for creating JSON Schema without writing JSON!",
"main": "index.js",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "jest --coverage",
"storybook": "storybook dev -p 6006",
Expand All @@ -13,7 +15,7 @@
"lint:fix": "eslint 'src/**/*.{js,ts,jsx,tsx}' --fix",
"format": "prettier --write 'src/**/*.{js,ts,jsx,tsx,json,css,scss,md}'",
"postinstall": "husky install",
"prepack": "pinst --disable",
"prepack": "pinst --disable && pnpm build",
"postpack": "pinst --enable"
},
"lint-staged": {
Expand All @@ -22,9 +24,26 @@
"prettier --write"
]
},
"keywords": ["JSON schema", "form builder"],
"repository": {
"type": "git",
"url": "https://github.com/amir78729/schema-builder.git"
},
"bugs": {
"url": "https://github.com/amir78729/schema-builder/issues"
},
"homepage": "https://github.com/amir78729/schema-builder#readme",
"keywords": [
"JSON schema",
"form builder",
"schema",
"builder",
"react"
],
"author": "Amirhossein Alibakhshi",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
},
"dependencies": {
"@emotion/react": "^11.11.4",
"@emotion/styled": "^11.11.5",
Expand Down Expand Up @@ -70,10 +89,17 @@
"lint-staged": "^15.2.7",
"pinst": "^3.0.0",
"prettier": "^3.3.2",
"rollup": "^3.20.1",
"rollup-plugin-terser": "^7.0.2",
"rollup-plugin-typescript2": "^0.32.1",
"shiki": "^1.10.3",
"storybook": "^8.1.6",
"ts-jest": "^29.2.3",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0"
},
"peerDependencies": {
"react": "^18.3.1",
"react-dom": "^18.3.1"
}
}
Loading

0 comments on commit 00ad615

Please sign in to comment.