This repository has been archived by the owner on Jun 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
BREAKING CHANGE: - Removes focusController, may have slightly different focus styles - Added new core components Box, Flex, Text, PopOver, Portal
- Loading branch information
1 parent
813b69c
commit 7ac95b6
Showing
1 changed file
with
102 additions
and
102 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,104 +1,104 @@ | ||
{ | ||
"name": "base5-ui", | ||
"version": "2.0.1", | ||
"description": "5app's reusable UI component library", | ||
"main": "index.js", | ||
"scripts": { | ||
"build-icons": "pixo src-icons/svg --out-dir src/icons --template src-icons/template.js", | ||
"compile": "babel src --out-dir dist", | ||
"copypackage": "cp -rf package.json README.md dist", | ||
"predist": "npm run copypackage", | ||
"dist": "cd dist && npm publish", | ||
"docz:dev": "docz dev", | ||
"docz:build": "docz build", | ||
"deploy-docs": "npm run docz:build && gh-pages -d .docz/dist -m 'Update docs [skip ci]'", | ||
"lint": "eslint ./", | ||
"postversion": "pwd && cp -r package.json ../", | ||
"semantic-release": "semantic-release", | ||
"test": "jest /src && npm run lint", | ||
"test:cover": "jest /src --coverage && npm run lint" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/5app/base5-ui.git" | ||
}, | ||
"author": "Dionysos Dajka", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/5app/base5-ui/issues" | ||
}, | ||
"homepage": "https://github.com/5app/base5-ui#readme", | ||
"devDependencies": { | ||
"@babel/cli": "^7.4.4", | ||
"@babel/core": "^7.4.5", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.4.4", | ||
"@babel/plugin-transform-react-jsx": "^7.3.0", | ||
"@babel/preset-env": "^7.4.5", | ||
"@semantic-release/changelog": "3.0.4", | ||
"@semantic-release/git": "7.0.14", | ||
"@testing-library/react": "8.0.4", | ||
"babel-eslint": "^10.0.2", | ||
"babel-plugin-styled-components": "^1.10.2", | ||
"docz": "^1.2.0", | ||
"docz-theme-default": "^1.2.0", | ||
"eslint": "^5.5.0", | ||
"eslint-config-5app": "^0.6.4", | ||
"eslint-config-prettier": "^6.0.0", | ||
"eslint-plugin-import": "^2.18.0", | ||
"eslint-plugin-jsx-a11y": "^6.2.1", | ||
"eslint-plugin-prettier": "^3.1.0", | ||
"eslint-plugin-react": "^7.14.2", | ||
"eslint-plugin-react-hooks": "^1.6.1", | ||
"gh-pages": "^2.0.1", | ||
"jest": "23.1.0", | ||
"jest-dom": "3.5.0", | ||
"pixo": "^1.1.2", | ||
"prettier": "^1.18.2", | ||
"prop-types": "15.7.2", | ||
"react": "16.8.6", | ||
"react-dom": "16.8.6", | ||
"semantic-release": "^15.13.12", | ||
"styled-components": "4.3.2" | ||
}, | ||
"peerDependencies": { | ||
"react": "16.8.6", | ||
"styled-components": "4.3.2" | ||
}, | ||
"dependencies": { | ||
"chroma-js": "^2.0.4", | ||
"classnames": "^2.2.6", | ||
"focus-visible": "^4.1.5", | ||
"prop-types": "15.7.2", | ||
"react-hook-size": "1.3.0", | ||
"react-popper": "1.3.3" | ||
}, | ||
"release": { | ||
"branch": "master", | ||
"prepare": [ | ||
"@semantic-release/changelog", | ||
{ | ||
"path": "@semantic-release/npm", | ||
"pkgRoot": "dist" | ||
}, | ||
{ | ||
"path": "@semantic-release/git", | ||
"assets": [ | ||
"package.json", | ||
"CHANGELOG.md" | ||
], | ||
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" | ||
} | ||
], | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
[ | ||
"@semantic-release/npm", | ||
{ | ||
"pkgRoot": "dist" | ||
} | ||
], | ||
"@semantic-release/github" | ||
] | ||
} | ||
"name": "base5-ui", | ||
"version": "2.0.0", | ||
"description": "5app's reusable UI component library", | ||
"main": "index.js", | ||
"scripts": { | ||
"build-icons": "pixo src-icons/svg --out-dir src/icons --template src-icons/template.js", | ||
"compile": "babel src --out-dir dist", | ||
"copypackage": "cp -rf package.json README.md dist", | ||
"predist": "npm run copypackage", | ||
"dist": "cd dist && npm publish", | ||
"docz:dev": "docz dev", | ||
"docz:build": "docz build", | ||
"deploy-docs": "npm run docz:build && gh-pages -d .docz/dist -m 'Update docs [skip ci]'", | ||
"lint": "eslint ./", | ||
"postversion": "pwd && cp -r package.json ../", | ||
"semantic-release": "semantic-release", | ||
"test": "jest /src && npm run lint", | ||
"test:cover": "jest /src --coverage && npm run lint" | ||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/5app/base5-ui.git" | ||
}, | ||
"author": "Dionysos Dajka", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/5app/base5-ui/issues" | ||
}, | ||
"homepage": "https://github.com/5app/base5-ui#readme", | ||
"devDependencies": { | ||
"@babel/cli": "^7.4.4", | ||
"@babel/core": "^7.4.5", | ||
"@babel/plugin-proposal-object-rest-spread": "^7.4.4", | ||
"@babel/plugin-transform-react-jsx": "^7.3.0", | ||
"@babel/preset-env": "^7.4.5", | ||
"@semantic-release/changelog": "3.0.4", | ||
"@semantic-release/git": "7.0.14", | ||
"@testing-library/react": "8.0.4", | ||
"babel-eslint": "^10.0.2", | ||
"babel-plugin-styled-components": "^1.10.2", | ||
"docz": "^1.2.0", | ||
"docz-theme-default": "^1.2.0", | ||
"eslint": "^5.5.0", | ||
"eslint-config-5app": "^0.6.4", | ||
"eslint-config-prettier": "^6.0.0", | ||
"eslint-plugin-import": "^2.18.0", | ||
"eslint-plugin-jsx-a11y": "^6.2.1", | ||
"eslint-plugin-prettier": "^3.1.0", | ||
"eslint-plugin-react": "^7.14.2", | ||
"eslint-plugin-react-hooks": "^1.6.1", | ||
"gh-pages": "^2.0.1", | ||
"jest": "23.1.0", | ||
"jest-dom": "3.5.0", | ||
"pixo": "^1.1.2", | ||
"prettier": "^1.18.2", | ||
"prop-types": "15.7.2", | ||
"react": "16.8.6", | ||
"react-dom": "16.8.6", | ||
"semantic-release": "^15.13.12", | ||
"styled-components": "4.3.2" | ||
}, | ||
"peerDependencies": { | ||
"react": "16.8.6", | ||
"styled-components": "4.3.2" | ||
}, | ||
"dependencies": { | ||
"chroma-js": "^2.0.4", | ||
"classnames": "^2.2.6", | ||
"focus-visible": "^4.1.5", | ||
"prop-types": "15.7.2", | ||
"react-hook-size": "1.3.0", | ||
"react-popper": "1.3.3" | ||
}, | ||
"release": { | ||
"branch": "master", | ||
"prepare": [ | ||
"@semantic-release/changelog", | ||
{ | ||
"path": "@semantic-release/npm", | ||
"pkgRoot": "dist" | ||
}, | ||
{ | ||
"path": "@semantic-release/git", | ||
"assets": [ | ||
"package.json", | ||
"CHANGELOG.md" | ||
], | ||
"message": "chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}" | ||
} | ||
], | ||
"plugins": [ | ||
"@semantic-release/commit-analyzer", | ||
"@semantic-release/release-notes-generator", | ||
[ | ||
"@semantic-release/npm", | ||
{ | ||
"pkgRoot": "dist" | ||
} | ||
], | ||
"@semantic-release/github" | ||
] | ||
} | ||
} |