-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.41 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.41 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
{
"name": "@eventcatalog/notifier",
"version": "0.0.8",
"description": "CLI tool to detect EventCatalog changes and send notifications",
"main": "dist/cli.js",
"bin": {
"eventcatalog-notifier": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"dev": "ts-node src/cli.ts",
"test": "vitest",
"lint": "eslint src/**/*.ts",
"start": "node dist/cli.js",
"format": "prettier --write .",
"format:diff": "prettier --list-different .",
"prepublishOnly": "npm run build",
"changeset": "changeset",
"release": "changeset publish"
},
"keywords": [
"eventcatalog",
"notifications",
"slack",
"cli"
],
"author": "EventCatalog",
"license": "MIT",
"dependencies": {
"@clack/prompts": "^0.11.0",
"@eventcatalog/sdk": "^2.6.8",
"axios": "^1.6.2",
"chalk": "^5.4.1",
"commander": "^11.1.0",
"diff": "^8.0.2",
"dotenv": "^17.2.0",
"gray-matter": "^4.0.3",
"js-yaml": "^4.1.0",
"picocolors": "^1.1.1"
},
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@changesets/cli": "^2.29.5",
"@types/js-yaml": "^4.0.9",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"prettier": "^3.3.3",
"ts-node": "^10.9.1",
"typescript": "^5.3.2",
"vitest": "^3.2.4"
}
}