-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 2.09 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 2.09 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
{
"name": "react-native-advanced-flatlist",
"version": "1.1.2",
"description": "An advanced FlatList component for React Native with built-in pagination, refresh control, single selection, and loading states",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*",
"src/**/*",
"README.md"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf lib",
"prepare": "npm run clean && npm run build",
"prepublishOnly": "npm run clean && npm run build",
"prepack": "npm run clean && npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"publish:check": "npm pack --dry-run",
"publish:patch": "npm version patch && npm publish",
"publish:minor": "npm version minor && npm publish",
"publish:major": "npm version major && npm publish",
"release": "node scripts/release.js",
"release:dry": "node scripts/release.js --dry-run",
"release:patch-auto": "node scripts/release.js --version patch",
"release:minor-auto": "node scripts/release.js --version minor",
"release:major-auto": "node scripts/release.js --version major",
"release:patch": "node scripts/release.js patch",
"release:minor": "node scripts/release.js minor",
"release:major": "node scripts/release.js major"
},
"keywords": [
"react-native",
"flatlist",
"pagination",
"refresh",
"selection",
"loading",
"advanced",
"component",
"typescript"
],
"author": "Your Name <your.email@example.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yourusername/react-native-advanced-flatlist.git"
},
"bugs": {
"url": "https://github.com/yourusername/react-native-advanced-flatlist/issues"
},
"homepage": "https://github.com/yourusername/react-native-advanced-flatlist#readme",
"peerDependencies": {
"react": ">=16.8.0",
"react-native": ">=0.60.0"
},
"devDependencies": {
"rimraf": "^5.0.10",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=14.0.0"
},
"publishConfig": {
"access": "public"
}
}