-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
96 lines (96 loc) · 2.76 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
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
{
"name": "@rimac-technology/semantic-release-ecr",
"version": "2.1.2",
"description": "Semantic-release plugin to publish a docker image to the AWS Elastic Container Registry",
"keywords": [
"release",
"semantic-release",
"ecr",
"aws"
],
"homepage": "https://github.com/RimacTechnology/semantic-release-ecr#readme",
"bugs": {
"url": "https://github.com/RimacTechnology/semantic-release-ecr/issues"
},
"repository": "[email protected]:RimacTechnology/semantic-release-ecr.git",
"license": "MIT",
"author": "Rimac Technology d.o.o.",
"type": "module",
"exports": {
".": {
"default": "./dist/index.js"
}
},
"files": [
"dist"
],
"scripts": {
"build": "turbo run build:all",
"build:ts": "tsup --config tsup.config.ts",
"cm": "cz",
"format": "turbo run format:all",
"format:ts": "biome format --diagnostic-level=error .",
"postinstall": "husky",
"lint": "turbo run lint:all",
"lint:ts": "biome lint --diagnostic-level=error .",
"lint:cspell": "cspell --no-progress --unique --no-summary '**'",
"prepack": "pinst --disable",
"postpack": "pinst --enable",
"release": "semantic-release"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
],
"rules": {
"header-max-length": [
2,
"always",
500
],
"body-max-line-length": [
2,
"always",
500
]
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"dependencies": {
"@aws-sdk/client-ecr": "^3.726.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@semantic-release/commit-analyzer": "^13.0.1",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.1",
"@semantic-release/npm": "^12.0.1",
"@semantic-release/release-notes-generator": "^14.0.3",
"@types/node": "^22.10.5",
"commitizen": "^4.3.1",
"conventional-changelog-conventionalcommits": "^8.0.0",
"cspell": "^8.17.1",
"husky": "^9.1.7",
"pinst": "^3.0.0",
"semantic-release": "^24.2.1",
"tsup": "^8.3.5",
"turbo": "^2.3.3",
"typescript": "^5.7.3"
},
"peerDependencies": {
"semantic-release": ">=20"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=20"
},
"publishConfig": {
"access": "public"
}
}