-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
73 lines (73 loc) · 2.13 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
{
"name": "@kontent-ai/data-ops",
"version": "2.2.2",
"description": "",
"type": "module",
"scripts": {
"build": "tsc",
"checkTests": "tsc --project tsconfig.tests.jsonc",
"lint": "eslint . --ext ts,tsx",
"fmt": "dprint fmt",
"fmt:check": "dprint check",
"start": "npm run build && node ./build/src/index.js",
"test:integration": "npm run build && vitest run --config=vitest.config.integration.js",
"test:advancedDiff": "npm run build && vitest run --config=vitest.config.integration.js tests/integration/diff/advancedDiff.test.ts",
"test:unit": "vitest run --config=vitest.config.unit.js",
"test:unit:watch": "vitest run --config=vitest.config.unit.js --watch",
"export:testEnvs": "node exportTestEnvironments.js"
},
"files": [
"./build/**/*"
],
"main": "./build/src/public.js",
"types": "./build/src/public.d.ts",
"bin": {
"data-ops": "./build/src/index.js"
},
"engines": {
"node": ">=20.10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kontent-ai/data-ops.git"
},
"author": "Kontent.ai",
"license": "MIT",
"bugs": {
"url": "https://github.com/kontent-ai/data-ops/issues"
},
"homepage": "https://github.com/kontent-ai/data-ops#readme",
"exports": {
".": "./build/src/public.js"
},
"dependencies": {
"@kontent-ai/core-sdk": "^10.8.0",
"@kontent-ai/delivery-sdk": "^15.2.0",
"@kontent-ai/management-sdk": "^7.5.1",
"@kontent-ai/migration-toolkit": "^2.2.1",
"@kontent-ai/rich-text-resolver": "1.2.1",
"archiver": "^7.0.1",
"axios": "^1.7.7",
"chalk": "^5.3.0",
"node-stream-zip": "^1.15.0",
"open": "^10.1.0",
"ts-pattern": "^5.4.0",
"yargs": "^17.7.2",
"zod": "^3.23.8",
"zod-validation-error": "^3.4.0"
},
"devDependencies": {
"@kontent-ai/eslint-config": "^1.0.2",
"@types/archiver": "^6.0.2",
"@types/node": "^22.7.4",
"@types/uuid": "^10.0.0",
"@types/yargs": "^17.0.33",
"dotenv": "^16.4.5",
"dprint": "^0.47.2",
"eslint": "^8.56.0",
"minimist": "^1.2.8",
"typescript": "^5.6.2",
"uuid": "^10.0.0",
"vitest": "^2.1.2"
}
}