-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
107 lines (107 loc) · 3.02 KB
/
package.json
File metadata and controls
107 lines (107 loc) · 3.02 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
{
"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": "ISC",
"author": "",
"type": "module",
"main": "index.js",
"directories": {
"doc": "docs",
"test": "tests"
},
"workspaces": [
"packages/*",
"samples/*",
"tools/*",
"e2e/*",
"packages/plugins/*"
],
"scripts": {
"prepare": "husky",
"precommit": "nx format:check --uncommitted",
"devcontainer": "devcontainer up --workspace-folder=$(pwd)",
"preversion": "npx nx release version ${npm_new_version}",
"knip": "knip"
},
"dependencies": {
"@fission-ai/openspec": "^1.2.0",
"@nx/devkit": "22.5.3",
"@xmldom/xmldom": "^0.8.11",
"axios": "^1.13.6",
"dset": "^3.1.4",
"fast-xml-parser": "^5.5.0",
"fxmlp": "^1.0.7",
"nx-mcp": "^0.22.2",
"open": "^11.0.0",
"openid-client": "^6.8.2",
"qs": "^6.15.0",
"reflect-metadata": "^0.2.2",
"ts-morph": "^27.0.2",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@abapify/adt-atc": "workspace:*",
"@abapify/adt-cli": "workspace:*",
"@abapify/adt-codegen": "workspace:*",
"@abapify/adt-config": "workspace:*",
"@abapify/adt-export": "workspace:*",
"@abapify/adt-playwright": "workspace:*",
"@abapify/adt-aunit": "workspace:*",
"@eslint/js": "^10.0.1",
"@nx/eslint": "22.5.3",
"@nx/eslint-plugin": "22.5.3",
"@nx/jest": "22.5.3",
"@nx/js": "22.5.3",
"@nx/node": "22.5.3",
"@nx/plugin": "22.5.3",
"@nx/rollup": "22.5.3",
"@nx/vite": "22.5.3",
"@nx/web": "22.5.3",
"@swc-node/register": "~1.11.1",
"@swc/cli": "0.8.0",
"@swc/core": "~1.15.17",
"@swc/helpers": "~0.5.19",
"@swc/jest": "0.2.39",
"@types/jest": "30.0.0",
"@types/js-yaml": "^4.0.9",
"@types/node": "^25.3.2",
"@typescript-eslint/parser": "^8.56.1",
"@typescript/native-preview": "^7.0.0-dev.20260228.1",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/ui": "^4.0.18",
"eslint": "^10.0.2",
"eslint-config-prettier": "10.1.8",
"eslint-import-resolver-typescript": "^4.4.4",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-unused-imports": "^4.4.1",
"husky": "^9.1.7",
"jest": "30.2.0",
"jest-environment-jsdom": "30.2.0",
"jest-environment-node": "^30.2.0",
"jest-util": "30.2.0",
"jiti": "2.6.1",
"jsonc-eslint-parser": "^3.1.0",
"knip": "^5.85.0",
"nx": "22.5.3",
"pino-pretty": "^13.1.3",
"prettier": "^3.8.1",
"rollup": "^4.59.0",
"swc-loader": "0.2.7",
"ts-jest": "29.4.6",
"ts-node": "10.9.2",
"tsdown": "^0.21.0-beta.2",
"tslib": "^2.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "8.56.1",
"verdaccio": "6.2.9",
"vite": "7.3.1",
"vitest": "^4.0.18"
},
"overrides": {
"fast-xml-builder": "^1.0.0"
}
}