@micoblanc/chipster
Version:
A composable and flexible multi-entry input component for React
81 lines • 2.12 kB
JSON
{
"name": "@micoblanc/chipster",
"version": "1.2.5",
"description": "A composable and flexible multi-entry input component for React",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"types": "dist/index.d.ts",
"style": "dist/styles.css",
"files": [
"dist"
],
"keywords": [
"react",
"input",
"multi-entry",
"tags",
"chips",
"component"
],
"author": "Mico Blanc <blancmico@gmail.com>",
"license": "MIT",
"homepage": "https://chipster.micoblanc.me/",
"repository": {
"type": "git",
"url": "git+https://github.com/micoblanc/chipster.git"
},
"bugs": {
"url": "https://github.com/micoblanc/chipster/issues"
},
"publishConfig": {
"access": "public"
},
"peerDependencies": {
"react": "^18.0.0",
"react-dom": "^18.0.0"
},
"dependencies": {
"classnames": "^2.3.2",
"react-transition-group": "^4.4.5"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@rollup/plugin-commonjs": "^24.1.0",
"@rollup/plugin-node-resolve": "^15.2.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.0",
"@testing-library/dom": "^9.3.3",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.2.0",
"@types/react-transition-group": "^4.4.11",
"@vitejs/plugin-react": "^4.3.3",
"autoprefixer": "^10.4.0",
"cssnano": "^6.0.1",
"postcss": "^8.4.12",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"rollup": "^3.28.0",
"rollup-plugin-postcss": "^4.0.2",
"ts-node": "^10.9.2",
"typescript": "^4.9.5",
"vite": "^5.0.0"
},
"type": "module",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/index.esm.js"
},
"./styles.css": "./dist/styles.css",
"./dist/styles.css": "./dist/styles.css"
},
"scripts": {
"build": "rollup -c",
"build:watch": "rollup -c -w",
"dev:test": "vite --port 3000 --host",
"test:e2e": "playwright test",
"test:e2e:ui": "playwright test --ui",
"test:e2e:debug": "playwright test --debug",
"clean": "rm -rf dist node_modules"
}
}