react-mention-input 1.0.10 → 1.0.11

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +0 -47
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -130,52 +130,5 @@ function App() {
130
130
 
131
131
  export default App;
132
132
  ```
133
-
134
- ## Package Configuration
135
-
136
- Ensure that your `package.json` has the following structure:
137
-
138
- ```json
139
- {
140
- "name": "react-mention-input",
141
- "version": "1.0.9",
142
- "main": "dist/index.js",
143
- "types": "dist/index.d.ts",
144
- "scripts": {
145
- "test": "echo "Error: no test specified" && exit 1",
146
- "build": "tsc && npm run copy-css",
147
- "copy-css": "copyfiles -u 1 src/**/*.css dist"
148
- },
149
- "keywords": [
150
- "mention",
151
- "input",
152
- "autocomplete",
153
- "user suggestions",
154
- "react",
155
- "typescript"
156
- ],
157
- "author": "Your Name",
158
- "license": "ISC",
159
- "description": "A React component for input with @mention functionality.",
160
- "repository": {
161
- "type": "git",
162
- "url": "https://github.com/yourusername/react-mention-input.git"
163
- },
164
- "devDependencies": {
165
- "@types/node": "^22.9.0",
166
- "@types/react": "^18.3.12",
167
- "@types/react-dom": "^18.3.1",
168
- "copyfiles": "^2.4.1",
169
- "csstype": "^3.1.3",
170
- "sass": "^1.81.0",
171
- "typescript": "^5.6.3"
172
- },
173
- "peerDependencies": {
174
- "react": "^17.0.0 || ^18.0.0",
175
- "react-dom": "^17.0.0 || ^18.0.0"
176
- }
177
- }
178
- ```
179
-
180
133
  ### License
181
134
  This project is licensed under the ISC License.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "react-mention-input",
3
- "version": "1.0.10",
3
+ "version": "1.0.11",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "scripts": {