-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
80 lines (80 loc) · 2.45 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "@legendapp/list",
"version": "0.6.3",
"description": "legend-list",
"sideEffects": false,
"private": false,
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"files": [
"**"
],
"exports": {
"./package.json": "./package.json",
".": {
"types": "./index.d.ts",
"import": "./index.mjs",
"require": "./index.js"
},
"./animated": {
"types": "./animated.d.ts",
"import": "./animated.mjs",
"require": "./animated.js"
},
"./reanimated": {
"types": "./reanimated.d.ts",
"import": "./reanimated.mjs",
"require": "./reanimated.js"
}
},
"engines": {
"node": ">=16.6.0",
"npm": ">=8.11.0"
},
"scripts": {
"build": "tsup && bun run posttsup.ts",
"publish:manual": "bun run build && cd dist && npm publish",
"lint": "bunx biome check ./src && bunx biome format ./src && bun run lint:example",
"lint:example": "bunx biome check ./example/app && bunx biome format ./example/app",
"lint:fix": "bunx biome lint --write ./src && bunx biome format --write ./src && bunx biome check --write ./src && bun run lint:fix:example",
"lint:fix:example": "bunx biome lint --write ./example/app && bunx biome format --write ./example/app && bunx biome check --write ./example/app"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@types/bun": "^1.1.13",
"@types/react": "^18.3.12",
"react": "^18.3.1",
"react-native": "^0.76.2",
"react-native-reanimated": "^3.16.6",
"tsup": "^8.3.5",
"typescript": "^5.5.2"
},
"author": "Legend <[email protected]> (https://github.com/LegendApp)",
"keywords": [
"react",
"react-native",
"list"
],
"repository": {
"type": "git",
"url": "git+https://github.com/LegendApp/legend-list.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/LegendApp/legend-list/issues"
},
"homepage": "https://github.com/LegendApp/legend-list#readme",
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
}
}