forked from LegendApp/legend-list
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
57 lines (57 loc) · 1.41 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
{
"name": "@legendapp/list",
"version": "0.3.0",
"description": "legend-list",
"sideEffects": false,
"private": false,
"main": "./index.js",
"module": "./index.mjs",
"types": "./index.d.ts",
"files": [
"**"
],
"engines": {
"node": ">=16.6.0",
"npm": ">=8.11.0"
},
"scripts": {
"build": "tsup && bun run posttsup.ts",
"publish:manual": "npm run build && cd dist && npm publish"
},
"peerDependencies": {
"react": "*",
"react-native": "*"
},
"devDependencies": {
"@types/bun": "^1.1.13",
"@types/react": "^18.3.12",
"prettier": "3.3.3",
"react": "^18.3.1",
"react-native": "^0.76.2",
"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"
]
}
}