-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 3 KB
/
Copy pathpackage.json
File metadata and controls
103 lines (103 loc) · 3 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
{
"name": "@webiny/data-transfer",
"version": "0.0.1",
"description": "Webiny data transfer tool",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"bin": {
"data-transfer": "./dist/cli.js",
"webiny-data-transfer": "./dist/cli.js",
"webiny-data-transfer-mcp": "./dist/mcp/bin.js"
},
"exports": {
".": {
"import": "./dist/index.js",
"types": "./dist/index.d.ts"
}
},
"files": [
"dist"
],
"publishConfig": {
"directory": "dist"
},
"scripts": {
"transfer": "tsx src/cli.ts",
"clean": "rm -rf dist",
"build": "node scripts/buildPackages.ts",
"pack:packages": "node scripts/packPackages.ts",
"release": "yarn build && changeset publish",
"verdaccio:start": "yarn verdaccio -c ./.verdaccio.yaml",
"release:verdaccio": "node scripts/releaseVerdaccio.ts",
"ts-check": "tsc -p config/tsconfig.check.json && tsc -p config/tsconfig.check.scripts.json",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage --coverage.include=\"src/**/**\"",
"format": "oxfmt",
"format:fix": "oxfmt",
"format:check": "oxfmt --check",
"lint": "oxlint --deny-warnings",
"lint:fix": "oxlint --fix",
"check:imports": "adio",
"full": "yarn npm audit && yarn format:fix && yarn lint:fix && yarn check:imports && yarn ts-check && yarn test:coverage"
},
"keywords": [
"webiny",
"data-transfer",
"migration",
"dynamodb",
"opensearch"
],
"author": "Webiny",
"license": "MIT",
"dependencies": {
"@aws-sdk/credential-providers": "^3.1101.0",
"@inquirer/core": "^11.2.1",
"@inquirer/prompts": "^8.5.2",
"@modelcontextprotocol/sdk": "^1.30.0",
"@opensearch-project/opensearch": "3.6.0",
"@types/node": "^24.13.3",
"@webiny/api-headless-cms-utils-os": "^6.6.0-alpha.0",
"@webiny/api-opensearch": "^6.6.0-alpha.0",
"@webiny/aws-sdk": "^6.6.0-alpha.0",
"@webiny/di": "^1.0.2",
"@webiny/lexical-converter": "^6.6.0-alpha.0",
"@webiny/lexical-nodes": "^6.6.0-alpha.0",
"@webiny/utils": "^6.6.0-alpha.0",
"dotenv": "^17.4.2",
"execa": "^10.0.1",
"exifreader": "^4.41.3",
"front-matter": "^4.0.2",
"jsdom": "^30.0.1",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"sharp": "^0.35.3",
"tsx": "^4.23.5",
"typescript": "^7.0.2",
"yargs": "^18.1.0",
"zod": "^4.4.3"
},
"devDependencies": {
"@aws-sdk/client-dynamodb": "^3.1101.0",
"@aws-sdk/client-s3": "^3.1101.0",
"@aws-sdk/lib-dynamodb": "^3.1101.0",
"@changesets/cli": "^2.31.1",
"@faker-js/faker": "^10.5.0",
"@smithy/util-stream": "^4.7.16",
"@types/jsdom": "^28.0.3",
"@types/yargs": "^17.0.35",
"@vitest/coverage-v8": "^4.1.10",
"adio": "^3.0.1",
"aws-sdk-client-mock": "^4.1.0",
"dynalite": "^4.0.0",
"oxfmt": "^0.61.0",
"oxlint": "^1.76.0",
"verdaccio": "^6.9.2",
"vitest": "^4.1.10"
},
"engines": {
"node": ">=24.0.0"
},
"packageManager": "yarn@4.18.0"
}