-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
91 lines (91 loc) · 2.4 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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "react-native-skia-responsive-text",
"version": "1.1.3",
"author": "Mateusz Łopaciński <[email protected]>",
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.2.1",
"@semantic-release/npm": "^11.0.0",
"@semantic-release/release-notes-generator": "^12.0.0",
"@shopify/react-native-skia": "0.1.196",
"@types/react": "^18.2.33",
"eslint": "^8.52.0",
"eslint-config-react-native-matipl01": "^1.0.2",
"husky": "^8.0.0",
"jest": "^29.7.0",
"lint-staged": "^15.0.2",
"prettier": "^3.0.3",
"react": "18.2.0",
"react-native": "0.72.6",
"react-native-builder-bob": "^0.23.1",
"react-native-reanimated": "~3.3.0",
"semantic-release": "^22.0.5",
"syncpack": "^11.2.1",
"typescript": "^5.2.2"
},
"files": [
"src",
"dist",
"LICENSE",
"README.md",
"CHANGELOG.md"
],
"keywords": [
"android",
"animated-text",
"ios",
"react-native",
"react-native-skia",
"reanimated",
"responsive-text",
"skia",
"text"
],
"license": "MIT",
"lint-staged": {
"*.{js,jsx,ts,tsx}": [
"yarn lint:fix",
"bash -c tsc --noEmit",
"yarn format:code"
],
"package.json": [
"syncpack format"
]
},
"main": "dist/commonjs/index",
"module": "dist/module/index",
"peerDependencies": {
"@shopify/react-native-skia": ">=0.1.75",
"react": "*",
"react-native": "*",
"react-native-reanimated": ">=2.0.0"
},
"publishConfig": {
"access": "public"
},
"react-native": "src/index",
"repository": "[email protected]:MatiPl01/react-native-skia-responsive-text.git",
"resolutions": {
"@shopify/react-native-skia": "0.1.196",
"cliui": "8.0.1",
"react": "18.2.0",
"react-native": "0.72.6",
"react-native-reanimated": "3.3.0"
},
"scripts": {
"bootstrap": "yarn example && yarn",
"build": "yarn clean && bob build",
"clean": "rm -rf dist && rm -f *.tgz",
"example": "yarn --cwd example",
"format:code": "prettier --write . --ignore-unknown",
"format:deps": "syncpack format",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"prepack": "yarn build",
"prepare": "husky install",
"typecheck": "tsc -p tsconfig.json --noEmit"
},
"types": "dist/typescript/index.d.ts"
}