-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.59 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.59 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
{
"name": "react-native-get-item-layout-section-list",
"version": "0.1.1",
"description": "Create the getItemLayout prop for a SectionList with React Native",
"keywords": [
"react",
"react-native",
"sectionlist",
"sectionList",
"section-list",
"get-item-layout",
"getItemLayout"
],
"homepage": "https://github.com/damonbauer/react-native-get-item-layout-section-list",
"bugs": {
"url": "https://github.com/damonbauer/react-native-get-item-layout-section-list/issues"
},
"license": "MIT",
"author": "Damon Bauer <damonbauer@protonmail.com> (https://damonbauer.dev)",
"type": "module",
"files": [
"src/index.ts",
"dist/"
],
"main": "dist/index.umd.js",
"module": "dist/index.es.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/damonbauer/react-native-get-item-layout-section-list.git"
},
"scripts": {
"build": "tsc --noEmit && vite build",
"lint": "eslint src/index.ts --cache",
"lint:fix": "eslint src/index.ts --fix --cache",
"test": "vitest",
"test:coverage": "vitest run --coverage"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/react-native": "^0.73.0",
"@typescript-eslint/eslint-plugin": "^8.70.0",
"@typescript-eslint/parser": "^8.70.0",
"@vitest/coverage-v8": "^4.0.18",
"eslint": "^10.10.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^16.5.0",
"prettier": "^3.2.5",
"typescript": "^6.0.3",
"vite": "^7.0.0",
"vite-plugin-dts": "^4.1.0",
"vitest": "^4.0.18"
}
}