-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
67 lines (67 loc) · 2.6 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
{
"name": "@kontent-ai/model-generator",
"version": "7.4.0",
"description": "This utility generates strongly-typed models based on Content Types in a Kontent.ai project. These models can be used with SDKs",
"bin": {
"kontent-generate": "./dist/es2022/lib/cli/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kontent-ai/model-generator-js"
},
"author": "richard sustek",
"license": "MIT",
"engines": {
"node": ">= 20"
},
"keywords": [
"Kontent",
"Kontent.ai",
"Kontent.ai typings",
"Kontent.ai models",
"Kontent Model Generator",
"Kontent.ai strongly typed models"
],
"preferGlobal": true,
"exports": "./dist/es2022/lib/index.js",
"types": "./dist/es2022/lib/index.d.ts",
"type": "module",
"scripts": {
"release": "npm run lint:check && standard-version && npm run update:version",
"release:major": "npm run lint:check && standard-version --release-as major && npm run update:version",
"release:major:beta": "npm run lint:check && standard-version --prerelease --release-as major && npm run update:version",
"release:beta": "standard-version --prerelease",
"prerelease:standard": "standard-version --prerelease",
"prerelease:major": "standard-version --prerelease --release-as major",
"prepublishOnly": "npm run lint:check && npm run build && npm run push:tags",
"publish:beta": "npm publish --tag=next",
"build:es2022": "tsc --p tsconfig.es2022.json",
"build": "npm run clean && npm run build:es2022",
"test:all": "npm run build && npm run test:delivery-models",
"test:delivery-models": "tsx scripts/generate-delivery-models",
"test:help": "npm run build && cd sample && node ../dist/es2022/lib/cli/cli -h",
"lint:check": "npx eslint lib",
"clean": "tsx clean.ts",
"push:tags": "git push --tags",
"update:version": "tsx ./scripts/update-version.ts"
},
"dependencies": {
"yargs": "17.7.2",
"prettier": "3.3.3",
"colors": "1.4.0",
"@kontent-ai/delivery-sdk": "14.11.0",
"@kontent-ai/management-sdk": "7.2.0"
},
"devDependencies": {
"@types/yargs": "17.0.32",
"standard-version": "9.5.0",
"typescript": "5.5.3",
"@types/node": "20.14.11",
"@types/prettier": "3.0.0",
"@typescript-eslint/eslint-plugin": "7.16.1",
"@typescript-eslint/parser": "7.16.1",
"eslint": "8.57.0",
"tsx": "4.16.2",
"dotenv-cli": "7.4.2"
}
}