-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 2.18 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
{
"name": "@modelinamodels/asyncapi",
"version": "0.0.0",
"description": "Autogenerated models for AsyncAPI",
"license": "Apache-2.0",
"homepage": "https://github.com/ModelinaModels/AsyncAPI-typescript",
"bugs": {
"url": "https://github.com/ModelinaModels/AsyncAPI-typescript/issues"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git://github.com/ModelinaModels/AsyncAPI-typescript.git"
},
"keywords": [
"modelina",
"model-generation"
],
"main": "lib/cjs/index.js",
"module": "lib/esm/index.js",
"types": "lib/types/index.d.ts",
"sideEffects": false,
"files": [
"/lib",
"./README.md",
"./LICENSE"
],
"dependencies": {},
"devDependencies": {
"@semantic-release/commit-analyzer": "^9.0.1",
"@semantic-release/github": "^8.0.1",
"@semantic-release/npm": "^8.0.0",
"@semantic-release/release-notes-generator": "^10.0.2",
"conventional-changelog-conventionalcommits": "^4.6.1",
"semantic-release": "^19.0.3",
"typescript": "^4.4.4",
"ts-node": "^10.3.0",
"@asyncapi/modelina": "1.0.0-next.28",
"@asyncapi/specs": "4.0.0"
},
"scripts": {
"build": "tsc",
"build:prod": "npm run build:cjs && npm run build:esm && npm run build:types",
"build:cjs": "tsc",
"build:esm": "tsc --project tsconfig.json --module ESNext --outDir ./lib/esm",
"build:types": "tsc --project tsconfig.json --declaration --emitDeclarationOnly --declarationMap --outDir ./lib/types",
"generate:assets": "ts-node ./scripts/generate-models.ts",
"release": "semantic-release",
"bump:version": "npm --no-git-tag-version --allow-same-version version $VERSION",
"prepublishOnly": "npm run build:prod && npm run generate:readme:toc"
},
"publishConfig": {
"access": "public"
},
"release": {
"branches": [
"main"
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits"
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}