-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
92 lines (92 loc) · 3.53 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@kontent-ai/migration-toolkit",
"version": "2.3.0",
"description": "This program can be used to import content related data into Kontent.ai from various formats. Additionally, it can also be used to export Kontent.ai data using Delivery API.",
"preferGlobal": true,
"private": false,
"bin": {
"kontent-ai-migration-toolkit": "./dist/es2022/node/cli/app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/Kontent-ai/kontent-ai-migration-toolkit"
},
"engines": {
"node": ">=20"
},
"author": "Richard Sustek",
"exports": "./dist/es2022/index.js",
"types": "./dist/es2022/index.d.ts",
"type": "module",
"directories": {},
"scripts": {
"test": "npm run test:all",
"release": "npm run lint && standard-version && npm run update:version",
"release:major": "npm run lint && standard-version --release-as major && npm run update:version",
"release:major:beta": "npm run lint && standard-version --prerelease --release-as major && npm run update:version",
"release:beta": "standard-version --prerelease && npm run update:version",
"prepublishOnly": "npm run lint && 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 lint && npm run build:es2022",
"test:all": "npm run build",
"test:migrate": "cd scripts/test && tsx test-migrate.ts",
"test:import": "cd scripts/test && tsx test-import.ts",
"test:export": "cd scripts/test && tsx test-export.ts",
"test:export:cli": "tsx lib/node/cli/app export --language=x --items=x --sourceEnvironmentId=x --sourceApiKey=x",
"test:help": "tsx lib/node/cli/app --help",
"test:help:command": "tsx lib/node/cli/app migrate --help",
"test:unit": "vitest run --config=vitest.config.js",
"lint": "npx eslint lib",
"lint:fix": "npx eslint lib --fix",
"clean": "tsx scripts/clean.ts",
"push:tags": "git push --tags",
"update:version": "tsx ./scripts/version/update-version.ts"
},
"keywords": [
"Kontent.ai",
"Kontent.ai import",
"Kontent.ai import toolkit",
"Kontent.ai migration tool",
"Kontent.ai migrations",
"Kontent.ai data migrations"
],
"license": "MIT",
"dependencies": {
"@kontent-ai-consulting/tools-analytics": "0.0.7",
"@kontent-ai/management-sdk": "7.5.1",
"browser-or-node": "3.0.0",
"buffer": "6.0.3",
"bytes": "3.1.2",
"chalk": "5.3.0",
"deep-equal": "2.2.3",
"dotenv": "16.4.7",
"jszip": "3.10.1",
"mime": "4.0.4",
"ora": "8.1.1",
"p-limit": "6.1.0",
"prompts": "2.4.2",
"ts-pattern": "5.5.0",
"yargs": "17.7.2",
"zod": "3.24.1"
},
"devDependencies": {
"@eslint/js": "9.16.0",
"@types/browser-or-node": "1.3.2",
"@types/bytes": "3.1.5",
"@types/deep-equal": "1.0.4",
"@types/eslint__js": "8.42.3",
"@types/node": "22.10.2",
"@types/prompts": "2.4.9",
"@types/yargs": "17.0.33",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"eslint": "9.16.0",
"standard-version": "9.5.0",
"tslib": "2.8.1",
"tsx": "4.19.2",
"typescript": "5.6.3",
"typescript-eslint": "8.18.0",
"vitest": "2.1.8"
}
}