forked from kontent-ai/model-generator-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 2.66 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
{
"name": "@kontent-ai/model-generator",
"version": "6.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/cjs/lib/cli/cli.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kontent-ai/model-generator-js"
},
"author": "richard sustek",
"license": "MIT",
"engines": {
"node": ">= 8"
},
"keywords": [
"Kontent",
"Kontent.ai",
"Kontent Model Generator"
],
"main": "./dist/cjs/lib/index.js",
"module": "./dist/es6/lib/index.js",
"es2015": "./dist/es6/lib/index.js",
"types": "./dist/cjs/lib/index.d.ts",
"scripts": {
"release": "npm run lint:check && standard-version",
"release:major": "npm run lint:check && standard-version --release-as major",
"release:major:beta": "npm run lint:check && standard-version --prerelease --release-as major",
"release:beta": "standard-version --prerelease",
"prerelease:standard": "standard-version --prerelease",
"prerelease:major": "standard-version --prerelease --release-as major",
"tsc-local": "./node_modules/.bin/tsc",
"ts-node-local": "./node_modules/.bin/ts-node",
"prepublishOnly": "npm run lint:check && npm run build:all",
"publish:beta": "npm publish --tag=next",
"build:es6": "tsc -m es6 --outDir dist/es6 --p tsconfig.prod.json",
"build:esnext": "tsc -m esnext --outDir dist/esnext --p tsconfig.prod.json",
"build:commonjs": "tsc -m commonjs --outDir dist/cjs --p tsconfig.prod.json",
"build:all": "npm run build:es6 && npm run build:esnext && npm run build:commonjs",
"test:all": "npm run build:commonjs && npm run test:delivery-models",
"test:delivery-models": "npm run build:commonjs && ts-node scripts/generate-delivery-models",
"test:help": "npm run build:commonjs && cd sample && node ../dist/cjs/lib/cli/cli -h",
"lint:check": "npx eslint lib"
},
"dependencies": {
"yargs": "17.7.2",
"prettier": "3.0.1",
"colors": "1.4.0",
"@kontent-ai/delivery-sdk": "14.3.1",
"@kontent-ai/management-sdk": "5.2.0"
},
"devDependencies": {
"@types/yargs": "17.0.24",
"standard-version": "9.5.0",
"typescript": "5.1.6",
"@types/node": "20.5.0",
"@types/prettier": "3.0.0",
"@typescript-eslint/eslint-plugin": "6.3.0",
"@typescript-eslint/parser": "6.3.0",
"eslint": "8.47.0",
"ts-node": "10.9.1",
"dotenv-cli": "7.2.1"
}
}