-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.27 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
{
"name": "@cap-js/console",
"description": "JavaScript plugin for CAP applications to communicate with the CAP console",
"version": "1.0.2",
"repository": "github:cap-js/console",
"homepage": "https://cap.cloud.sap/",
"author": "SAP SE (https://www.sap.com)",
"license": "Apache-2.0",
"keywords": [
"CAP",
"CDS",
"Node.js",
"CAP console"
],
"type": "module",
"scripts": {
"build": "tsc",
"test": "vitest --silent=true",
"test:verbose": "vitest --silent=false",
"test:coverage": "vitest --silent=true --coverage",
"lint": "eslint --max-warnings 0 --no-warn-ignored && tsc --noEmit",
"lint:fix": "eslint --max-warnings 0 --no-warn-ignored --fix && tsc --noEmit"
},
"files": [
"dist",
"cds-plugin.js",
"LICENSE"
],
"dependencies": {
"@sap/cds": "^9.2.0",
"ws": "^8.18.3",
"zod": "^4.0.15"
},
"devDependencies": {
"@cap-js/cds-types": "^0.15.0",
"@types/ws": "^8.18.1",
"@vitest/coverage-v8": "^3.2.4",
"@vitest/eslint-plugin": "^1.3.17",
"eslint": "^9.37.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-simple-import-sort": "^12.1.1",
"typescript": "^5.9.2",
"typescript-eslint": "^8.46.0",
"vitest": "^3.2.4"
}
}