forked from jamsch/react-native-duo-drag-drop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
108 lines (108 loc) · 2.61 KB
/
package.json
File metadata and controls
108 lines (108 loc) · 2.61 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "@jamsch/react-native-duo-drag-drop",
"version": "1.1.3",
"description": "Duolingo-style drag and drop for React Native",
"main": "lib/commonjs/index.js",
"module": "lib/module/index.js",
"types": "lib/typescript/index.d.ts",
"react-native": "src/index.tsx",
"source": "src/index",
"files": [
"src",
"lib",
"!**/__tests__",
"!**/__fixtures__",
"!**/__mocks__",
"android",
"ios",
"cpp",
"react-native-duo-drag-drop.podspec",
"!lib/typescript/example",
"!android/build",
"!ios/build"
],
"scripts": {
"typecheck": "tsc --noEmit",
"prepack": "bob build",
"release": "release-it",
"example": "yarn --cwd example",
"bootstrap": "yarn example && yarn"
},
"keywords": [
"react-native",
"ios",
"android"
],
"repository": "https://github.com/jamsch/react-native-duo-drag-drop",
"author": "jamsch <12927717+jamsch@users.noreply.github.com> (https://github.com/jamsch)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamsch/react-native-duo-drag-drop/issues"
},
"homepage": "https://github.com/jamsch/react-native-duo-drag-drop#readme",
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.5.0",
"@release-it/conventional-changelog": "^9.0.0",
"@types/react": "~18.3.11",
"commitlint": "^19.5.0",
"prettier": "3.3.3",
"react": "18.3.1",
"react-native": "0.75.4",
"react-native-builder-bob": "^0.30.2",
"release-it": "^17.8.2",
"react-native-gesture-handler": "~2.20.0",
"react-native-reanimated": "~3.15.5",
"typescript": "~5.6.3"
},
"peerDependencies": {
"react": "*",
"react-native": "*",
"react-native-gesture-handler": "*",
"react-native-reanimated": "*"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true,
"host": "github.com",
"tokenRef": "GITHUB_JAMSCH_TOKEN"
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
},
"prettier": {
"quoteProps": "consistent",
"singleQuote": false,
"tabWidth": 2,
"trailingComma": "all",
"useTabs": false,
"printWidth": 120
},
"react-native-builder-bob": {
"source": "src",
"output": "lib",
"targets": [
"commonjs",
"module",
"typescript"
]
}
}