-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.21 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
{
"name": "react-native-flexible-mentions",
"version": "1.0.0",
"description": "A React Native library for handling mentions, now with support for customizable input components and flexible integrations.",
"keywords": ["react-native", "mentions", "custom-input", "dynamic", "library", "flexible", "react-native-mentions"],
"scripts": {
"prepare": "tsc",
"build": "tsc",
"test": "jest",
"changelog": "github_changelog_generator -u gr8pathik -p react-native-flexible-mentions"
},
"files": [
"dist"
],
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/gr8pathik/react-native-flexible-mentions.git"
},
"author": "Pathik Gandhi <gr8pathik@gmail.com>",
"license": "MIT",
"devDependencies": {
"@types/diff": "^6.0.0",
"@types/jest": "^29.5.14",
"@types/react-native": "^0.73.0",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
},
"peerDependencies": {
"react": ">=16.0",
"react-native": ">=0.57"
},
"dependencies": {
"diff": "^7.0.0",
"string.prototype.matchall": "^4.0.11"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
}
}