-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
117 lines (117 loc) · 3.4 KB
/
Copy pathpackage.json
File metadata and controls
117 lines (117 loc) · 3.4 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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
{
"name": "abapify",
"version": "0.1.1",
"private": true,
"description": "TypeScript libraries and CLI tools for modern SAP ABAP development workflows. Build CLI-first development tools, integrate ABAP with modern CI/CD pipelines, and work with SAP systems programmatically.",
"license": "MIT",
"author": "",
"type": "module",
"directories": {
"doc": "docs",
"test": "tests"
},
"workspaces": [
"packages/*",
"samples/*",
"tools/*",
"e2e/*",
"packages/plugins/*",
"website"
],
"scripts": {
"prepare": "husky",
"precommit": "nx format:check --uncommitted",
"devcontainer": "devcontainer up --workspace-folder=$(pwd)",
"preversion": "npx nx release version ${npm_new_version}",
"knip": "knip",
"dev:pilot": "bunx concurrently -k -s first \"bunx nx run adt-mcp:serve\" \"bunx mastra dev --dir src/mastra --env .env\""
},
"lint-staged": {
"*.{ts,tsx,js,jsx,mjs,cjs,md,mdx,json,jsonc,yml,yaml,css,scss,html}": "prettier --write --ignore-unknown"
},
"dependencies": {
"@fission-ai/openspec": "^1.12.0",
"@nx/devkit": "23.2.0",
"@xmldom/xmldom": "^0.9.12",
"axios": "^1.20.0",
"dset": "^3.1.4",
"fast-xml-parser": "^5.11.1",
"fxmlp": "^1.0.7",
"nx-mcp": "^0.25.0",
"open": "^11.0.2",
"openid-client": "^6.8.8",
"qs": "^6.16.0",
"reflect-metadata": "^0.2.2",
"ts-morph": "^28.0.0",
"yaml": "^2.9.0",
"zod": "^4.5.4"
},
"devDependencies": {
"@abapify/adt-atc": "workspace:*",
"@abapify/adt-aunit": "workspace:*",
"@abapify/adt-cli": "workspace:*",
"@abapify/adt-codegen": "workspace:*",
"@abapify/adt-config": "workspace:*",
"@abapify/adt-export": "workspace:*",
"@abapify/adt-playwright": "workspace:*",
"@eslint/js": "^10.0.1",
"@nx/eslint": "23.2.0",
"@nx/eslint-plugin": "23.2.0",
"@nx/jest": "23.2.0",
"@nx/js": "23.2.0",
"@nx/node": "23.2.0",
"@nx/plugin": "23.2.0",
"@nx/rollup": "23.2.0",
"@nx/vite": "23.2.0",
"@nx/vitest": "23.2.0",
"@nx/web": "23.2.0",
"@prettier/plugin-xml": "^3.4.2",
"@swc-node/register": "~1.12.1",
"@swc/cli": "0.8.1",
"@swc/core": "~1.15.47",
"@swc/helpers": "~0.5.23",
"@swc/jest": "0.2.39",
"@types/jest": "30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^26.5.0",
"@typescript-eslint/parser": "8.70.0",
"@typescript/native-preview": "^7.0.0-dev.20260707.2",
"@vitest/coverage-v8": "^4.1.11",
"@vitest/ui": "^4.1.11",
"eslint": "^10.10.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.7",
"jest": "30.5.1",
"jest-environment-jsdom": "30.5.1",
"jest-environment-node": "^30.5.1",
"jest-util": "30.5.1",
"jiti": "2.7.0",
"jsonc-eslint-parser": "^3.3.0",
"knip": "^6.35.0",
"lint-staged": "^17.5.0",
"nx": "23.2.0",
"pino-pretty": "^13.1.3",
"prettier": "^3.9.6",
"rollup": "4.63.1",
"swc-loader": "0.2.7",
"ts-jest": "29.4.12",
"ts-node": "10.9.2",
"tsdown": "^0.22.14",
"tslib": "^2.8.1",
"tsx": "^4.23.13",
"typescript": "^6.0.3",
"typescript-eslint": "8.70.0",
"verdaccio": "6.10.3",
"vite": "8.2.2",
"vitest": "^4.1.11"
},
"overrides": {
"fast-xml-builder": "^1.0.0",
"webpack": "5.105.4"
},
"exports": {
".": "./packages/adk/dist/index.mjs",
"./package.json": "./package.json"
}
}