UNPKG

2.53 kBJSONView Raw
1{
2 "name": "node-opcua-crypto",
3 "version": "4.6.2",
4 "description": "Crypto tools for Node-OPCUA",
5 "types": "./dist/index.d.ts",
6 "main": "./dist/index.js",
7 "exports": {
8 ".": {
9 "types": "./dist/index.d.ts",
10 "import": "./dist/index.mjs",
11 "require": "./dist/index.js"
12 },
13 "./web": {
14 "types": "./dist/source/index_web.d.ts",
15 "import": "./dist/source/index_web.mjs",
16 "require": "./dist/source/index_web.js"
17 }
18 },
19 "scripts": {
20 "build:tsup": "tsup ./index.ts ./index_web.ts ./source/index.ts ./source/index_web.ts ./source_nodejs/index.ts --shims --format esm,cjs --out-dir dist --sourcemap --clean --dts ",
21 "build:types": "tsc -p tsconfig.types.json",
22 "build:demo": "node web/esbuild.mjs",
23 "build:clean": "npx rimraf ./dist ./dist-* *.tsbuildinfo",
24 "build": "npm run build:tsup",
25 "prepare": "npm run build",
26 "tslint": "tslint --project . --fix",
27 "lint": "eslint . --ext .ts",
28 "makedoc": "npx typedoc index.ts --excludeNotDocumented --exclude \"_*\" --excludePrivate --excludeProtected --excludeExternals -out doc",
29 "cost-of-modules": "npx cost-of-modules --no-install",
30 "prettier-format": "prettier --config .prettierrc.js source/**/*.ts test/**/*.ts --write",
31 "ncu": "npx npm-check-updates -u -x env-paths,chalk",
32 "experiment": "tsc test/test_peculiar_edge_case.ts -t es2021 -m nodenext"
33 },
34 "keywords": [
35 "OPCUA",
36 "opcua",
37 "m2m",
38 "iot",
39 "opc ua",
40 "internet of things"
41 ],
42 "makedoc": "npx typedoc packages/node-opcua-crypto/index.ts -out doc",
43 "author": "Etienne Rossignon",
44 "license": "MIT",
45 "engine": {
46 "node": ">15.0"
47 },
48 "devDependencies": {
49 "@types/node": "^20.9.1",
50 "lorem-ipsum": "^2.0.8"
51 },
52 "dependencies": {
53 "@peculiar/webcrypto": "^1.4.3",
54 "@peculiar/x509": "^1.9.5",
55 "@types/jsrsasign": "^10.5.12",
56 "@types/sshpk": "^1.17.4",
57 "assert": "^2.1.0",
58 "chalk": "^4.1.2",
59 "hexy": "0.3.5",
60 "jsrsasign": "^10.8.6",
61 "sshpk": "^1.18.0"
62 },
63 "repository": {
64 "type": "git",
65 "url": "git://github.com/node-opcua/node-opcua-crypto.git"
66 },
67 "bugs": {
68 "url": "https://github.com/node-opcua/node-opcua-crypto/issues"
69 },
70 "gitHead": "60bdb60eb82e4c0ac411ec7add89b05bc1a41354"
71}