forked from miggi92/odata-fw
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.11 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
41
{
"name": "odata-fw",
"version": "1.2.1",
"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.113.82",
"@abaplint/runtime": "^2.10.23",
"@abaplint/transpiler": "^2.10.23",
"@abaplint/transpiler-cli": "^2.10.23",
"vitepress": "^1.5.0"
},
"dependencies": {
"@octokit/rest": "^21.0.2",
"mermaid": "^11.4.1",
"vitepress-plugin-image-viewer": "^1.1.5",
"vitepress-plugin-mermaid": "^2.0.17"
}
}