-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.19 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 2.19 KB
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
{
"name": "@donkasun/react-native-outlined-text",
"version": "1.0.2",
"description": "A React Native component for creating outlined text with customizable stroke effects and automatic text wrapping",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"clean": "rm -rf lib",
"prepublishOnly": "npm run clean && npm run build",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix",
"format": "prettier --write \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"format:check": "prettier --check \"src/**/*.{ts,tsx,js,jsx,json,md}\"",
"type-check": "tsc --noEmit",
"pre-commit": "lint-staged",
"release": "node scripts/release.js",
"release:patch": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major",
"prepare": "husky"
},
"keywords": [
"react-native",
"outlined-text",
"text-stroke",
"stroke-text",
"text-outline",
"text-wrapping",
"react-native-component"
],
"author": "donkasun",
"license": "MIT",
"peerDependencies": {
"react": ">=18.0.0",
"react-native": ">=0.60.0",
"react-native-svg": ">=12.0.0"
},
"devDependencies": {
"@types/react": "^19.0.10",
"@types/react-native": "^0.72.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"eslint": "^8.0.0",
"eslint-plugin-react": "^7.33.0",
"eslint-plugin-react-hooks": "^4.6.0",
"husky": "^9.1.7",
"lint-staged": "^16.1.2",
"prettier": "^3.0.0",
"react-native-svg": "^14.0.0",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/donkasun/react-native-outlined-text.git"
},
"bugs": {
"url": "https://github.com/donkasun/react-native-outlined-text/issues"
},
"homepage": "https://github.com/donkasun/react-native-outlined-text#readme",
"lint-staged": {
"src/**/*.{ts,tsx}": [
"eslint --fix",
"prettier --write"
],
"src/**/*.{js,jsx}": [
"eslint --fix",
"prettier --write"
],
"*.{json,md}": [
"prettier --write"
]
}
}