@nopendsui/tags-input
Version:
Tags Input is a component that allows users to input tags.
63 lines • 1.31 kB
JSON
{
"name": "@nopendsui/tags-input",
"version": "0.0.1",
"type": "module",
"publishConfig": {
"access": "public"
},
"keywords": [
"tags-input",
"tag-input",
"react-tags-input",
"tags"
],
"author": "yamz8",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yamz8/nopendsui",
"directory": "packages/tags-input"
},
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist",
"package.json",
"README.md"
],
"peerDependencies": {
"@types/react": "*",
"@types/react-dom": "*",
"react": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc",
"react-dom": "^16.8 || ^17.0 || ^18.0 || ^19.0 || ^19.0.0-rc"
},
"peerDependenciesMeta": {
"@types/react": {
"optional": true
},
"@types/react-dom": {
"optional": true
}
},
"devDependencies": {
"tsup": "^8.3.6",
"typescript": "^5.7.3"
},
"dependencies": {
"@nopendsui/shared": "0.0.1"
},
"scripts": {
"dev": "tsup --watch",
"build": "tsup --clean",
"typecheck": "tsc --noEmit",
"test": "vitest run"
}
}