forked from jleem99/expo-config-plugins
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.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
{
"name": "@osenco/expo-config-plugins",
"version": "0.1.2",
"description": "A collection predefined plugins for use with @expo/config-plugins",
"main": "index.js",
"files": [
"lib"
],
"scripts": {
"build": "tsc",
"deploy": "release-it"
},
"author": "Osen Concepts <[email protected]> (https://github.com/osenco)",
"license": "MIT",
"devDependencies": {
"@commitlint/config-conventional": "^19.4.1",
"@evilmartians/lefthook": "^1.7.15",
"@expo/config-plugins": "^8.0.8",
"@expo/config-types": "^51.0.2",
"@release-it/conventional-changelog": "^8.0.1",
"@types/node": "^22.5.4",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"commitlint": "^19.4.1",
"eslint": "^8.55.0",
"eslint-config-jleem": "^1.6.4",
"eslint-config-standard-with-typescript": "^40.0.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-n": "^17.10.2",
"eslint-plugin-promise": "^7.1.0",
"release-it": "^17.6.0",
"typescript": "~5.3.2"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"release-it": {
"$schema": "https://unpkg.com/release-it@17/schema/release-it.json",
"git": {
"commitMessage": "chore: release ${version}",
"tagName": "v${version}"
},
"npm": {
"publish": true
},
"github": {
"release": true
},
"plugins": {
"@release-it/conventional-changelog": {
"preset": "angular"
}
}
}
}