-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.7 KB
/
package.json
File metadata and controls
62 lines (62 loc) · 1.7 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
{
"name": "@fjordcleanup/trash-proto",
"version": "0.0.0-development",
"description": "Protocol definitions for the application.",
"homepage": "https://github.com/fjordcleanup/trash-proto#readme",
"bugs": {
"url": "https://github.com/fjordcleanup/trash-proto/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fjordcleanup/trash-proto.git"
},
"author": "Markus Tacker <m@coderbyheart.com> | https://coderbyheart.com",
"license": "MIT",
"type": "module",
"scripts": {
"test": "node --no-warnings --experimental-transform-types --test \"!(node_modules)/**/*.spec.ts\"",
"test:watch": "node --no-warnings --experimental-transform-types --test --watch \"!(node_modules)/**/*.spec.ts\"",
"prepare": "husky"
},
"devDependencies": {
"@bifravst/prettier-config": "1.1.17",
"@commitlint/config-conventional": "19.8.1",
"@types/node": "24.10.9",
"commitlint": "19.8.1",
"husky": "9.1.7",
"lint-staged": "16.2.7",
"prettier": "3.8.0"
},
"prettier": "@bifravst/prettier-config",
"lint-staged": {
"*.ts": [
"prettier --write"
],
"*.{md,json,yaml,yml}": [
"prettier --write"
]
},
"release": {
"branches": [
"saga"
],
"remoteTags": true,
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@sebbo2002/semantic-release-jsr",
[
"@semantic-release/github",
{
"successCommentCondition": false,
"failCommentCondition": false
}
]
]
},
"dependencies": {
"@coderbyheart/aws-dynamodb-es-cqrs": "^1.3.0",
"@sinclair/typebox": "^0.34.47",
"ulidx": "^2.4.1"
}
}