-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.1 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.1 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
{
"name": "mindbox-expo-plugin",
"version": "1.0.5",
"target-version": "1.0.5",
"main": "app.plugin.js",
"react-native": "build/runtime/index.js",
"types": "build/index.d.ts",
"files": [
"build",
"app.plugin.js",
"src/ios/support",
"src/android/support",
"README.md",
"LICENSE.md"
],
"engines": {
"node": ">=20"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "rimraf build && tsc",
"clean": "rimraf build",
"lint": "eslint .",
"release": "release-it"
},
"keywords": [],
"repository": "https://github.com/mindbox-cloud/expo-plugin",
"author": "",
"license": "SEE LICENSE IN LICENCE.md",
"bugs": {
"url": "https://github.com/mindbox-cloud/expo-plugin/issues"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"description": "Plugin for integration React Native Expo mobile apps with Mindbox",
"exports": {
".": {
"react-native": "./build/runtime/index.js",
"default": "./app.plugin.js"
},
"./runtime": "./build/runtime/index.js"
},
"dependencies": {
"@expo/config-plugins": "^54.0.1"
},
"devDependencies": {
"@types/node": "^24.5.2",
"eslint": "^9.36.0",
"prettier": "^3.6.2",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "^5.9.2",
"@release-it/conventional-changelog": "^2.0.0",
"@release-it/keep-a-changelog": "^2.3.0",
"release-it": "^14.2.2"
},
"release-it": {
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}",
"changelog": "npx auto-changelog --stdout --commit-limit false -u --template https://raw.githubusercontent.com/release-it/release-it/master/templates/changelog-compact.hbs",
"requireCleanWorkingDir": false
},
"hooks": {
"before:npm": "yarn build",
"after:bump": "npx auto-changelog -p"
},
"npm": {
"publish": true,
"skipChecks": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/keep-a-changelog": {
"filename": "CHANGELOG.md"
}
}
}
}