UNPKG

@astralservices/react-chip

Version:

Manage a list of chips based on a strings list.

73 lines (72 loc) 1.59 kB
{ "name": "@astralservices/react-chip", "version": "1.0.0", "description": "Manage a list of chips based on a strings list.", "homepage": "https://github.com/astralservices/react-chip", "repository": "astralservices/react-chip", "license": "MIT", "author": "Jack Merrill <me@jackmerrill.com>, CJ Patoilo <cjpatoilo@gmail.com>", "private": false, "main": "dist/index.js", "module": "dist/react-chip.esm.js", "typings": "dist/index.d.ts", "files": [ "dist" ], "keywords": [ "🐥", "chip", "chips", "component", "input", "react", "react-chip", "react-chips" ], "ignore": [ ".editorconfig", ".github", ".gitignore", ".travis.yml" ], "dependencies": { "react": "^18.2.0" }, "devDependencies": { "@types/jest": "^26.0.20", "@types/react": "^18.0.21", "@types/react-dom": "^18.0.6", "husky": "^4.3.8", "lint-staged": "^10.5.3", "prettier-standard": "^16.4.1", "react-dom": "^18.2.0", "rimraf": "^3.0.2", "tsdx": "^0.14.1", "tslib": "^2.1.0", "typescript": "^4.1.3" }, "peerDependencies": { "react": ">=18" }, "scripts": { "build": "tsdx build --entry index.tsx", "lint": "prettier-standard --check", "start": "tsdx watch --entry index.tsx", "test": "tsdx test --env=jsdom" }, "prettier": { "jsxSingleQuote": false, "trailingComma": "all" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "src/**/*": [ "prettier-standard --format", "git add" ] } }