-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.33 KB
/
Copy pathpackage.json
File metadata and controls
115 lines (115 loc) · 3.33 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
{
"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.6.0",
"@nx/devkit": "23.1.0",
"@xmldom/xmldom": "^0.9.10",
"axios": "^1.18.1",
"dset": "^3.1.4",
"fast-xml-parser": "^5.10.1",
"fxmlp": "^1.0.7",
"nx-mcp": "^0.25.0",
"open": "^11.0.0",
"openid-client": "^6.8.4",
"qs": "^6.15.3",
"reflect-metadata": "^0.2.2",
"ts-morph": "^28.0.0",
"yaml": "^2.9.0",
"zod": "^4.4.3"
},
"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.1.0",
"@nx/eslint-plugin": "23.1.0",
"@nx/jest": "23.1.0",
"@nx/js": "23.1.0",
"@nx/node": "23.1.0",
"@nx/plugin": "23.1.0",
"@nx/rollup": "23.1.0",
"@nx/vite": "23.1.0",
"@nx/vitest": "23.1.0",
"@nx/web": "23.1.0",
"@swc-node/register": "~1.12.1",
"@swc/cli": "0.8.1",
"@swc/core": "~1.15.46",
"@swc/helpers": "~0.5.23",
"@swc/jest": "0.2.39",
"@types/jest": "30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^26.1.1",
"@typescript-eslint/parser": "8.65.0",
"@typescript/native-preview": "^7.0.0-dev.20260707.2",
"@vitest/coverage-v8": "^4.1.10",
"@vitest/ui": "^4.1.10",
"eslint": "^10.7.0",
"eslint-config-prettier": "10.1.8",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.7",
"jest": "30.4.2",
"jest-environment-jsdom": "30.4.1",
"jest-environment-node": "^30.4.1",
"jest-util": "30.4.1",
"jiti": "2.7.0",
"jsonc-eslint-parser": "^3.1.0",
"knip": "^6.29.0",
"lint-staged": "^17.1.1",
"nx": "23.1.0",
"pino-pretty": "^13.1.3",
"prettier": "^3.9.6",
"rollup": "4.62.2",
"swc-loader": "0.2.7",
"ts-jest": "29.4.12",
"ts-node": "10.9.2",
"tsdown": "^0.22.13",
"tslib": "^2.8.1",
"tsx": "^4.23.1",
"typescript": "^6.0.3",
"typescript-eslint": "8.65.0",
"verdaccio": "6.8.0",
"vite": "8.1.5",
"vitest": "^4.1.10"
},
"overrides": {
"fast-xml-builder": "^1.0.0"
},
"exports": {
".": "./packages/adk/dist/index.mjs",
"./package.json": "./package.json"
}
}