-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.54 KB
/
package.json
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
{
"name": "react-native-get-item-layout-section-list",
"version": "0.1.0",
"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": {
"@types/react-native": "^0.73.0",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vitest/coverage-v8": "^2.0.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.5",
"typescript": "^5.4.2",
"vite": "^6.0.6",
"vite-plugin-dts": "^4.1.0",
"vitest": "^2.0.5"
}
}