-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
55 lines (55 loc) · 1.7 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "@fluxninja/aperture-js",
"version": "2.4.5",
"description": "Flow control SDK that interfaces with FluxNinja Aperture Agents",
"main": "./lib/index.js",
"scripts": {
"postversion": "node updateVersion.mjs",
"prebuild": "rm -rf ./lib",
"build": "tsc -p tsconfig.json",
"grpc-client": "npm run build && node ./lib/client.js",
"example": "cd example && npm run build && node ./dist/example.js",
"prepublishOnly": "npm run build",
"local:publish": "npx local-package-publisher -p",
"docs": "./node_modules/.bin/typedoc --excludePrivate; ./scripts/docs_to_readme.sh"
},
"homepage": "https://fluxninja.com/",
"repository": "https://github.com/fluxninja/aperture-js",
"bugs": {
"url": "https://github.com/fluxninja/aperture/issues",
"email": "support@fluxninja.com"
},
"author": "FluxNinja, Inc. <support@fluxninja.com> (https://fluxninja.com/)",
"license": "Apache-2.0",
"files": [
"lib/**/*",
"@types/**/*",
"proto/**/*"
],
"type": "module",
"types": "@types/index.d.ts",
"dependencies": {
"@grpc/grpc-js": "^1.10.10",
"@grpc/proto-loader": "^0.7.13",
"@opentelemetry/api": "1.6.0",
"@opentelemetry/exporter-trace-otlp-grpc": "0.43.0",
"@opentelemetry/resources": "1.17.0",
"@opentelemetry/sdk-trace-base": "1.17.0",
"@opentelemetry/sdk-trace-node": "1.17.0",
"@opentelemetry/semantic-conventions": "1.17.0",
"serialize-error": "^11.0.2"
},
"engines": {
"node": ">=16.19.1",
"npm": ">=8.19.3"
},
"devDependencies": {
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "4.9.5"
},
"publishConfig": {
"access": "public",
"scope": "@fluxninja"
}
}