node-opcua-crypto
Version:
Crypto tools for Node-OPCUA
92 lines (91 loc) • 2.96 kB
JSON
{
"name": "node-opcua-crypto",
"version": "5.3.6",
"type": "module",
"description": "Crypto tools for Node-OPCUA",
"types": "./dist/index.d.ts",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./web": {
"types": "./dist/source/index_web.d.ts",
"import": "./dist/source/index_web.js",
"require": "./dist/source/index_web.cjs"
},
"./bundled-web": {
"types": "./dist/source/index_web.d.ts",
"import": "./dist-web-bundle/index_web.js"
},
"./node": {
"types": "./dist/source_nodejs/index.d.ts",
"import": "./dist/source_nodejs/index.js",
"require": "./dist/source_nodejs/index.cjs"
}
},
"scripts": {
"build:bundle": "tsup --config tsup.config.bundle.ts",
"build:web-bundle": "tsup --config tsup.config.web-bundle.ts",
"build:tsup": "tsup",
"build:clean": "npx rimraf ./dist ./dist-* *.tsbuildinfo",
"build:types": "tsc -p tsconfig.types.json",
"build:demo": "node web/esbuild.mjs",
"build": "npm run build:tsup",
"prepare": "npm run build",
"tslint": "biome lint --fix",
"lint": "biome check",
"makedoc": "npx typedoc index.ts --excludeNotDocumented --exclude \"_*\" --excludePrivate --excludeProtected --excludeExternals -out doc",
"cost-of-modules": "npx -y slow-deps",
"format": "biome format --write",
"experiment": "tsc test/test_peculiar_edge_case.ts -t es2021 -m nodenext"
},
"keywords": [
"OPCUA",
"opcua",
"m2m",
"iot",
"opc ua",
"internet of things"
],
"makedoc": "npx typedoc packages/node-opcua-crypto/index.ts -out doc",
"author": "Etienne Rossignon",
"license": "MIT",
"engine": {
"node": ">=18.0"
},
"devDependencies": {
"@types/node": "^24.12.4",
"@types/sshpk": "^1.17.4",
"assert": "^2.1.0",
"buffer": "^6.0.3",
"constants-browserify": "^1.0.0",
"crypto-browserify": "^3.12.1",
"events": "^3.3.0",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"util": "^0.12.5",
"vm-browserify": "^1.1.2"
},
"dependencies": {
"@peculiar/webcrypto": "^1.7.1",
"@peculiar/x509": "^2.0.0",
"reflect-metadata": "^0.2.2",
"sshpk": "^1.18.0"
},
"repository": {
"type": "git",
"url": "git://github.com/node-opcua/node-opcua-crypto.git"
},
"bugs": {
"url": "https://github.com/node-opcua/node-opcua-crypto/issues"
},
"files": [
"dist",
"LICENSE",
"README.md"
],
"gitHead": "318a0babb2e926e7c4607720493739122bc2ee97"
}