@amabeth/repeating-wheel-picker 1.1.0 → 1.2.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,183 +1,169 @@
1
- {
2
- "name": "@amabeth/repeating-wheel-picker",
3
- "version": "1.1.0",
4
- "description": "A React Native wheel picker that allows endless scrolling through repeating content",
5
- "main": "./lib/module/index.js",
6
- "types": "./lib/typescript/src/index.d.ts",
7
- "exports": {
8
- ".": {
9
- "source": "./src/index.tsx",
10
- "types": "./lib/typescript/src/index.d.ts",
11
- "default": "./lib/module/index.js"
12
- },
13
- "./package.json": "./package.json"
14
- },
15
- "files": [
16
- "src",
17
- "lib",
18
- "android",
19
- "ios",
20
- "cpp",
21
- "*.podspec",
22
- "react-native.config.js",
23
- "!ios/build",
24
- "!android/build",
25
- "!android/gradle",
26
- "!android/gradlew",
27
- "!android/gradlew.bat",
28
- "!android/local.properties",
29
- "!**/__tests__",
30
- "!**/__fixtures__",
31
- "!**/__mocks__",
32
- "!**/.*"
33
- ],
34
- "scripts": {
35
- "example": "cd example & npm start",
36
- "test": "jest",
37
- "typecheck": "tsc",
38
- "lint": "eslint \"**/*.{js,ts,tsx}\"",
39
- "clean": "del-cli lib",
40
- "prepare": "bob build & husky",
41
- "docs": "typedoc",
42
- "release": "release-it --only-version"
43
- },
44
- "keywords": [
45
- "react-native",
46
- "ios",
47
- "android",
48
- "expo",
49
- "wheel",
50
- "picker",
51
- "wheel-picker"
52
- ],
53
- "repository": {
54
- "type": "git",
55
- "url": "git+https://github.com/amabeth/repeating-wheel-picker.git"
56
- },
57
- "author": "amabeth <amabeth.dev@gmail.com> (https://github.com/amabeth)",
58
- "license": "MIT",
59
- "bugs": {
60
- "url": "https://github.com/amabeth/repeating-wheel-picker/issues"
61
- },
62
- "homepage": "https://amabeth.github.io/repeating-wheel-picker",
63
- "publishConfig": {
64
- "registry": "https://registry.npmjs.org/"
65
- },
66
- "dependencies": {
67
- "expo-linear-gradient": "^14.1.5"
68
- },
69
- "devDependencies": {
70
- "@commitlint/config-conventional": "^19.6.0",
71
- "@eslint/compat": "^1.3.1",
72
- "@eslint/eslintrc": "^3.3.1",
73
- "@eslint/js": "^9.30.1",
74
- "@evilmartians/lefthook": "^1.11.16",
75
- "@react-native/babel-preset": "^0.80.1",
76
- "@react-native/eslint-config": "^0.80.1",
77
- "@release-it/conventional-changelog": "^10.0.1",
78
- "@types/jest": "^30.0.0",
79
- "@types/react": "^19.0.14",
80
- "commitlint": "^19.8.1",
81
- "del-cli": "^6.0.0",
82
- "eslint": "^9.30.1",
83
- "eslint-config-prettier": "^10.1.5",
84
- "eslint-plugin-prettier": "^5.5.1",
85
- "husky": "^9.1.7",
86
- "jest": "^30.0.4",
87
- "prettier": "^3.6.2",
88
- "react-native-builder-bob": "^0.40.12",
89
- "release-it": "^19.0.3",
90
- "typedoc-github-theme": "^0.3.0",
91
- "typedoc-plugin-coverage": "^4.0.1",
92
- "typescript": "^5.8.3"
93
- },
94
- "peerDependencies": {
95
- "react": "19.0.0",
96
- "react-native": "0.79.5"
97
- },
98
- "overrides": {
99
- "@react-native/eslint-config": {
100
- "eslint": "$eslint"
101
- }
102
- },
103
- "workspaces": [
104
- "example"
105
- ],
106
- "packageManager": "yarn@3.6.1",
107
- "jest": {
108
- "preset": "react-native",
109
- "modulePathIgnorePatterns": [
110
- "<rootDir>/example/node_modules",
111
- "<rootDir>/lib/"
112
- ]
113
- },
114
- "commitlint": {
115
- "extends": [
116
- "@commitlint/config-conventional"
117
- ]
118
- },
119
- "release-it": {
120
- "git": {
121
- "commitMessage": "chore: release ${version}",
122
- "tagName": "v${version}"
123
- },
124
- "npm": {
125
- "publish": true
126
- },
127
- "github": {
128
- "release": true
129
- },
130
- "plugins": {
131
- "@release-it/conventional-changelog": {
132
- "preset": {
133
- "name": "angular"
134
- }
135
- }
136
- }
137
- },
138
- "prettier": {
139
- "quoteProps": "consistent",
140
- "singleQuote": false,
141
- "tabWidth": 2,
142
- "trailingComma": "es5",
143
- "useTabs": false
144
- },
145
- "react-native-builder-bob": {
146
- "source": "src",
147
- "output": "lib",
148
- "targets": [
149
- [
150
- "module",
151
- {
152
- "esm": true
153
- }
154
- ],
155
- [
156
- "typescript",
157
- {
158
- "project": "tsconfig.build.json"
159
- }
160
- ]
161
- ]
162
- },
163
- "create-react-native-library": {
164
- "languages": "js",
165
- "type": "library",
166
- "version": "0.51.1"
167
- },
168
- "typedocOptions": {
169
- "entryPoints": [
170
- "src/index.tsx"
171
- ],
172
- "projectDocuments": [
173
- "*.md"
174
- ],
175
- "sort": [
176
- "source-order"
177
- ],
178
- "plugin": [
179
- "typedoc-plugin-coverage",
180
- "typedoc-github-theme"
181
- ]
182
- }
183
- }
1
+ {
2
+ "name": "@amabeth/repeating-wheel-picker",
3
+ "version": "1.2.1",
4
+ "description": "A React Native wheel picker that allows endless scrolling through repeating content",
5
+ "main": "./lib/module/index.js",
6
+ "types": "./lib/typescript/src/index.d.ts",
7
+ "exports": {
8
+ ".": {
9
+ "types": "./lib/typescript/src/index.d.ts",
10
+ "default": "./lib/module/index.js"
11
+ },
12
+ "./package.json": "./package.json"
13
+ },
14
+ "files": [
15
+ "lib",
16
+ "example/package.json",
17
+ "example/**/*.ts",
18
+ "example/**/*.tsx",
19
+ "android",
20
+ "ios",
21
+ "cpp",
22
+ "*.podspec",
23
+ "react-native.config.js",
24
+ "!ios/build",
25
+ "!android/build",
26
+ "!android/gradle",
27
+ "!android/gradlew",
28
+ "!android/gradlew.bat",
29
+ "!android/local.properties",
30
+ "!**/__tests__",
31
+ "!**/__fixtures__",
32
+ "!**/__mocks__",
33
+ "!**/.*",
34
+ "!**/node_modules"
35
+ ],
36
+ "scripts": {
37
+ "example": "cd example & npm start",
38
+ "test": "jest",
39
+ "typecheck": "tsc",
40
+ "lint": "eslint \"**/*.{js,ts,tsx}\"",
41
+ "clean": "del-cli lib",
42
+ "prepare": "bob build & husky",
43
+ "docs": "typedoc",
44
+ "release": "npx dotenv -- release-it --config .release-it.json"
45
+ },
46
+ "keywords": [
47
+ "react-native",
48
+ "ios",
49
+ "android",
50
+ "expo",
51
+ "wheel",
52
+ "picker",
53
+ "wheel-picker"
54
+ ],
55
+ "repository": {
56
+ "type": "git",
57
+ "url": "git+https://github.com/amabeth/repeating-wheel-picker.git"
58
+ },
59
+ "author": "amabeth <amabeth.dev@gmail.com> (https://github.com/amabeth)",
60
+ "license": "MIT",
61
+ "bugs": {
62
+ "url": "https://github.com/amabeth/repeating-wheel-picker/issues"
63
+ },
64
+ "homepage": "https://amabeth.github.io/repeating-wheel-picker",
65
+ "publishConfig": {
66
+ "registry": "https://registry.npmjs.org/"
67
+ },
68
+ "dependencies": {
69
+ "expo-linear-gradient": "^14.1.5"
70
+ },
71
+ "devDependencies": {
72
+ "@commitlint/cli": "^19.8.1",
73
+ "@commitlint/config-conventional": "^19.8.1",
74
+ "@eslint/compat": "^1.3.1",
75
+ "@eslint/eslintrc": "^3.3.1",
76
+ "@eslint/js": "^9.30.1",
77
+ "@evilmartians/lefthook": "^1.11.16",
78
+ "@react-native/babel-preset": "^0.80.1",
79
+ "@react-native/eslint-config": "^0.80.1",
80
+ "@release-it/conventional-changelog": "^10.0.1",
81
+ "@types/jest": "^30.0.0",
82
+ "@types/react": "^19.0.14",
83
+ "commitlint": "^19.8.1",
84
+ "del-cli": "^6.0.0",
85
+ "dotenv-cli": "^8.0.0",
86
+ "eslint": "^9.30.1",
87
+ "eslint-config-prettier": "^10.1.5",
88
+ "eslint-plugin-prettier": "^5.5.1",
89
+ "husky": "^9.1.7",
90
+ "jest": "^30.0.4",
91
+ "prettier": "^3.6.2",
92
+ "react-native-builder-bob": "^0.40.12",
93
+ "release-it": "^19.0.3",
94
+ "typedoc-github-theme": "^0.3.0",
95
+ "typedoc-plugin-coverage": "^4.0.1",
96
+ "typescript": "^5.8.3"
97
+ },
98
+ "peerDependencies": {
99
+ "react": "19.0.0",
100
+ "react-native": "0.79.5"
101
+ },
102
+ "overrides": {
103
+ "@react-native/eslint-config": {
104
+ "eslint": "$eslint"
105
+ },
106
+ "conventional-changelog-conventionalcommits": "8.0.0"
107
+ },
108
+ "workspaces": [
109
+ "example"
110
+ ],
111
+ "packageManager": "yarn@3.6.1",
112
+ "jest": {
113
+ "preset": "react-native",
114
+ "modulePathIgnorePatterns": [
115
+ "<rootDir>/example/node_modules",
116
+ "<rootDir>/lib/"
117
+ ]
118
+ },
119
+ "commitlint": {
120
+ "extends": [
121
+ "@commitlint/config-conventional"
122
+ ]
123
+ },
124
+ "prettier": {
125
+ "quoteProps": "consistent",
126
+ "singleQuote": false,
127
+ "tabWidth": 2,
128
+ "trailingComma": "es5",
129
+ "useTabs": false
130
+ },
131
+ "react-native-builder-bob": {
132
+ "source": "src",
133
+ "output": "lib",
134
+ "targets": [
135
+ [
136
+ "module",
137
+ {
138
+ "esm": true
139
+ }
140
+ ],
141
+ [
142
+ "typescript",
143
+ {
144
+ "project": "tsconfig.build.json"
145
+ }
146
+ ]
147
+ ]
148
+ },
149
+ "create-react-native-library": {
150
+ "languages": "js",
151
+ "type": "library",
152
+ "version": "0.51.1"
153
+ },
154
+ "typedocOptions": {
155
+ "entryPoints": [
156
+ "src/index.tsx"
157
+ ],
158
+ "projectDocuments": [
159
+ "*.md"
160
+ ],
161
+ "sort": [
162
+ "source-order"
163
+ ],
164
+ "plugin": [
165
+ "typedoc-plugin-coverage",
166
+ "typedoc-github-theme"
167
+ ]
168
+ }
169
+ }