-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
56 lines (56 loc) · 1.48 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
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "react-native-hyperlinks",
"version": "1.0.4",
"description": "A simple and customizable library to display hyperlinks in React Native",
"main": "./build/dist/index.js",
"repository": {
"type": "git",
"url": "[email protected]:andresribeiro/react-native-hyperlinks.git"
},
"license": "MIT",
"author": "André Ribeiro",
"bugs": "https://github.com/andresribeiro/react-native-hyperlinks/issues",
"homepage": "https://github.com/andresribeiro/react-native-hyperlinks#readme",
"keywords": [
"react-native",
"react",
"link",
"links",
"hyperlink",
"hyperlinks",
"hyper-link",
"hypertext",
"hypertext",
"rn",
"typescript"
],
"scripts": {
"build": "cd lib && tsc && npm run copy:package",
"lint": "rome check .",
"lint:fix": "rome format . --write",
"copy:package": "cpx '../package.json' '../build/dist/'"
},
"simple-git-hooks": {
"pre-commit": "pnpm lint",
"prepare-commit-msg": "exec < /dev/tty && git cz --hook || true"
},
"config": {
"commitizen": {
"path": "cz-emoji"
}
},
"devDependencies": {
"@commitlint/cli": "^17.3.0",
"@commitlint/config-conventional": "^17.3.0",
"@types/linkify-it": "^3.0.2",
"@types/react": "^18.0.26",
"@types/react-native": "^0.70.8",
"commitizen": "^4.2.6",
"cpx": "^1.5.0",
"cz-emoji": "^1.3.2-canary.2",
"linkify-it": "^4.0.1",
"rome": "^11.0.0",
"simple-git-hooks": "^2.8.1",
"typescript": "^4.9.4"
}
}