forked from secureCodeBox/secureCodeBox
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 686 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "@securecodebox/parser-sdk-nodejs",
"version": "1.0.0",
"type": "module",
"description": "Handles external communication required for all secureCodeBox parsers",
"main": "parser-wrapper.js",
"keywords": [],
"author": "iteratec GmbH",
"license": "Apache-2.0",
"scripts": {
"build": "bun build --production --target=node --outdir=build/ --external=./parser/parser.js --sourcemap=external --minify ./parser-wrapper.js"
},
"dependencies": {
"@kubernetes/client-node": "^1.3.0",
"ajv": "^8.17.1",
"ajv-draft-04": "^1.0.0",
"ajv-formats": "^3.0.1",
"jsonpointer": "^5.0.1"
},
"devDependencies": {
"@types/node": "^24.5.2"
}
}