generated from kuraydev/react-native-typescript-library-starter
-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 2.53 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 2.53 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
{
"name": "react-native-segmented-control-2",
"version": "2.1.1add",
"description": "🚀 React Native Segmented Control, Pure Javascript for iOS and Android",
"main": "./build/dist/SegmentedControl.js",
"repository": "git@github.com:WrathChaos/react-native-segmented-control-2.git",
"author": "FreakyCoder <kurayogun@gmail.com>",
"license": "MIT",
"homepage": "https://www.freakycoder.com",
"bugs": "https://github.com/WrathChaos/react-native-segmented-control-2/issues",
"keywords": [
"segmented-control",
"segmented-control-2",
"FreakyCoder",
"freakycoder",
"kuray",
"Kuray",
"react",
"react-native",
"javascript",
"ui-lib",
"rn"
],
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@react-native-community/eslint-config": "^3.2.0",
"@types/react": "^19.1.12",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"chalk": "^5.3.0",
"cpx": "^1.5.0",
"ora": "^8.1.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^26.9.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.34.3",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-native": "^4.0.0",
"eslint-plugin-unused-imports": "^4.1.3",
"husky": "^9.1.7",
"prettier": "^3.3.3",
"typescript": "^5.9.2"
},
"peerDependencies": {
"react": ">=17 || >=18",
"react-native": ">=0.71"
},
"scripts": {
"build": "node ./scripts/terminal/build.mjs",
"prepare": "husky install",
"husky:setup": "npx husky-init && npm run husky:commitlint && npm run husky:prettier && npm run husky:lint",
"husky:commitlint": "npx husky add .husky/commit-msg 'npx --no-install commitlint --edit'",
"semantic-release": "semantic-release",
"copy:assets": "node ./scripts/terminal/copy-assets.mjs",
"copy:package": "node ./scripts/terminal/copy-package.mjs",
"husky:lint": "npx husky add .husky/pre-commit 'npm run lint'",
"husky:prettier": "npx husky set .husky/pre-commit 'npm run prettier'",
"lint:fix": "eslint . --ext .js,.jsx,.ts,.tsx --fix",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,md}\"",
"lint:check": "eslint . --ext .js,.jsx,.ts,.tsx --max-warnings=0",
"lint": "node ./scripts/terminal/lint.mjs",
"prettier": "node ./scripts/terminal/prettier.mjs"
}
}