-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 976 Bytes
/
package.json
File metadata and controls
40 lines (40 loc) · 976 Bytes
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
{
"name": "@abapify/adt-export",
"publishConfig": {
"access": "public"
},
"version": "0.2.0",
"description": "Export CLI plugin for adt-cli - deploy local files to SAP",
"type": "module",
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": "./dist/index.mjs",
"./commands/export": "./dist/commands/export.mjs",
"./commands/roundtrip": "./dist/commands/roundtrip.mjs",
"./commands/activate": "./dist/commands/activate.mjs",
"./package.json": "./package.json"
},
"files": [
"dist",
"README.md"
],
"keywords": [
"sap",
"adt",
"abap",
"export",
"deploy",
"abapgit"
],
"dependencies": {
"@abapify/adk": "workspace:*",
"@abapify/adt-locks": "workspace:*",
"@abapify/adt-plugin": "workspace:*",
"@abapify/adt-plugin-abapgit": "workspace:*",
"chalk": "^5.6.2",
"diff": "^8.0.3",
"fast-xml-parser": "^5.5.5"
},
"module": "./dist/index.mjs"
}