-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
101 lines (101 loc) · 2.88 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "@openziti/ziti-browzer-core",
"version": "0.51.0",
"type": "module",
"description": "Core componentry for the Ziti browZer ecosystem (used internally by ziti-browzer-runtime and ziti-sdk-browzer)",
"scripts": {
"rollup": "rimraf dist/esm/*.js && rollup -c ./rollup.config.js",
"build": "yarn rollup && yarn gulp",
"gulp": "gulp clean build",
"test": "karma start karma.conf.cjs",
"preinstall": "node -e \"if(process.env.npm_execpath.indexOf('yarn') === -1) throw new Error('You must use Yarn to install, not NPM')\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/openziti/ziti-browzer-core.git"
},
"keywords": [
"ziti",
"js",
"javascript",
"zero trust",
"zero-trust",
"browZer",
"browser"
],
"author": "NetFoundry",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/openziti/ziti-browzer-core/issues"
},
"homepage": "https://github.com/openziti/ziti-browzer-core#readme",
"main": "./dist/esm/index.js",
"files": [
"dist"
],
"devDependencies": {
"@babel/core": "^7.23.6",
"@open-wc/karma-esm": "^4.0.0",
"@rollup/plugin-commonjs": "^22.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.3.0",
"@types/node": "^20.6.3",
"chai": "^4.3.6",
"del": "^6.1.1",
"execa": "^6.1.0",
"gulp": "^4.0.2",
"karma": "^6.3.20",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.1",
"karma-env-preprocessor": "^0.1.1",
"karma-mocha": "^2.0.1",
"mocha": "^10.0.0",
"rimraf": "^3.0.2",
"rollup": "^2.75.6",
"rollup-plugin-babel": "^4.4.0",
"rollup-plugin-esformatter": "^2.0.1",
"rollup-plugin-polyfill-node": "^0.9.0",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.2.2"
},
"dependencies": {
"@openziti/libcrypto-js": "^0.24.0",
"@openziti/ziti-browzer-edge-client": "^0.7.0",
"asn1js": "^3.0.5",
"assert": "^2.0.0",
"async-mutex": "^0.5.0",
"asynckit": "^0.4.0",
"buffer": "^6.0.3",
"bufferutil": "^4.0.8",
"chnl": "^1.2.0",
"elapsed-time": "^0.0.1",
"es6-object-assign": "^1.1.0",
"events": "^3.3.0",
"fast-memoize": "^2.5.2",
"format-message": "^6.2.4",
"from2": "^2.3.0",
"is-ip": "^5.0.0",
"js-cookie": "^3.0.1",
"jwt-decode": "^3.1.2",
"libsodium-wrappers": "^0.7.10",
"lodash-es": "^4.17.21",
"md5.js": "^1.3.5",
"mime-types": "^2.1.35",
"multistream": "^4.1.0",
"pako": "^2.1.0",
"pkijs": "^3.2.4",
"process": "^0.11.10",
"promise-controller": "^1.0.0",
"promise.prototype.finally": "^3.1.8",
"randombytes": "^2.1.0",
"ripemd160": "^2.0.2",
"sha.js": "^2.4.11",
"stream": "^0.0.2",
"stream-browserify": "^3.0.0",
"string_decoder": "^1.3.0",
"typedarray-to-buffer": "^4.0.0",
"url": "^0.11.0",
"util": "^0.12.4",
"uuid": "^8.3.2"
}
}