-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.17 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
{
"name": "enchinito-api",
"version": "2.0.0",
"author": "Marcos Sader <[email protected]>",
"homepage": "https://github.com/xmarcos/enchinito-api",
"private": true,
"scripts": {
"commit": "commit",
"prepare": "is-ci || husky install"
},
"dependencies": {
"@xmarcos/enchinito": "^0.4.2",
"itty-router": "^4.2.2"
},
"devDependencies": {
"@cloudflare/workers-types": "^4.20240314.0",
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.1.0",
"@commitlint/prompt-cli": "^19.0.3",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"husky": "^9.0.11",
"is-ci": "^3.0.1",
"semantic-release": "^23.0.2",
"wrangler": "^3.34.2"
},
"engines": {
"node": ">=16"
},
"release": {
"branches": [
"main"
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
[
"@semantic-release/npm",
{
"npmPublish": false
}
],
"@semantic-release/git",
"@semantic-release/github"
],
"tagFormat": "v${version}"
}
}