-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
40 lines (40 loc) · 1.08 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
{
"name": "odata-fw",
"version": "1.2.0",
"description": "OData framework",
"directories": {
"doc": "docs"
},
"scripts": {
"unit": "rm -rf output && abap_transpile abap_transpile.json && echo RUNNING && node output/index.mjs",
"test": "npm run unit",
"abaplint": "abaplint --format codeframe",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"repository": "github:miggi92/odata-fw",
"keywords": [
"abap",
"odata",
"framework"
],
"author": "Miguel Gebhardt",
"license": "MIT",
"bugs": {
"url": "https://github.com/miggi92/odata-fw/issues"
},
"homepage": "https://github.com/miggi92/odata-fw/blob/master/README.md",
"devDependencies": {
"@abaplint/cli": "^2.112.6",
"@abaplint/runtime": "^2.10.5",
"@abaplint/transpiler": "^2.10.5",
"@abaplint/transpiler-cli": "^2.10.5",
"vitepress": "^1.3.0"
},
"dependencies": {
"mermaid": "^10.9.1",
"vitepress-plugin-image-viewer": "^1.1.5",
"vitepress-plugin-mermaid": "^2.0.16"
}
}