-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.05 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
{
"name": "@ismaelmartinez/generator-atlassian-compass-event-catalog",
"version": "0.0.4",
"description": "Atlassian Compass generator for Event Catalog",
"scripts": {
"build": "tsup",
"test": "vitest",
"format": "prettier --write .",
"format:diff": "prettier --list-different .",
"changeset": "changeset",
"release": "changeset publish"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"atlassian",
"compass",
"EventCatalog",
"generator"
],
"author": "[email protected]",
"license": "ISC",
"devDependencies": {
"@types/js-yaml": "^4.0.9",
"@types/node": "^22.8.0",
"prettier": "^3.3.3",
"tsup": "^8.3.4",
"typescript": "^5.6.3",
"vitest": "^2.1.3"
},
"files": [
"dist",
"package.json"
],
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"dependencies": {
"@changesets/cli": "^2.27.9",
"@eventcatalog/sdk": "^1.1.3",
"chalk": "^5.3.0",
"change-case": "^5.4.4",
"js-yaml": "^4.1.0"
}
}