-
Notifications
You must be signed in to change notification settings - Fork 31
Expand file tree
/
Copy pathpackage.json
More file actions
126 lines (126 loc) · 3.18 KB
/
package.json
File metadata and controls
126 lines (126 loc) · 3.18 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
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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
{
"name": "cf-content-types-generator",
"version": "0.0.0",
"description": "Contentful Content Types (TS Definitions) Generator",
"author": "Marco Link<marco.link@contentful.com>",
"license": "MIT",
"bin": {
"cf-content-types-generator": "bin/run"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"require": "./lib/index.js",
"default": "./lib/index.js"
},
"./package.json": "./package.json"
},
"bugs": "https://github.com/contentful-userland/cf-content-types-generator/issues",
"engines": {
"node": ">=24.0.0"
},
"packageManager": "pnpm@9.15.9",
"oclif": {
"commands": {
"strategy": "single",
"target": "./lib/commands/index"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/contentful-userland/cf-content-types-generator.git"
},
"files": [
"/bin",
"/lib"
],
"dependencies": {
"@oclif/core": "^4.10.3",
"@oclif/plugin-help": "^6.2.40",
"contentful": "^11.12.0",
"contentful-export": "^7.22.5",
"contentful-management": "^12.0.0",
"fs-extra": "^11.3.4",
"lodash": "^4.17.23",
"ts-morph": "^27.0.2"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@semantic-release/changelog": "^6.0.3",
"@types/cli-progress": "^3.11.5",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^30.0.0",
"@types/json-patch": "^0.0.33",
"@types/lodash": "^4.17.24",
"@types/node": "^24.12.0",
"conventional-changelog-conventionalcommits": "^9.3.0",
"eslint": "^9.39.1",
"husky": "^9.1.4",
"jest": "^30.3.0",
"jest-fixtures": "^0.6.0",
"lint-staged": "^16.4.0",
"oclif": "^4.22.96",
"prettier": "^3.8.1",
"semantic-release": "^25.0.3",
"strip-indent": "^3.0.0",
"ts-jest": "29.4.6",
"ts-node": "^10.9.1",
"typescript-eslint": "^8.57.2",
"typescript": "^5.9.3"
},
"scripts": {
"posttest": "eslint . --fix",
"prepack": "rm -rf lib && tsc -b && oclif readme",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"lint-staged": "lint-staged",
"prettier": "prettier . --check",
"prettier:fix": "prettier . --write",
"prepare": "husky",
"test": "jest",
"test:coverage": "jest --coverage",
"test:watch": "jest --watch",
"build": "tsc",
"version": "oclif readme && git add README.md",
"presemantic-release": "tsc",
"semantic-release": "semantic-release"
},
"release": {
"branches": [
"master",
{
"name": "v3",
"channel": "next",
"prerelease": "next"
}
],
"plugins": [
[
"@semantic-release/commit-analyzer",
{
"preset": "conventionalcommits",
"presetConfig": {},
"releaseRules": [
{
"type": "build",
"scope": "deps",
"release": "patch"
}
]
}
],
[
"@semantic-release/release-notes-generator",
{
"preset": "conventionalcommits",
"presetConfig": {}
}
],
"@semantic-release/npm",
"@semantic-release/changelog",
"@semantic-release/github"
]
}
}