-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
76 lines (76 loc) · 2.36 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
{
"name": "@holochain/client",
"version": "0.19.0-dev.6",
"description": "A JavaScript client for the Holochain Conductor API",
"author": "Holochain Foundation <[email protected]> (https://holochain.org)",
"license": "CAL-1.0",
"repository": {
"type": "git",
"url": "git+https://github.com/holochain/holochain-client-js.git"
},
"keywords": [
"holochain",
"client",
"conductor api"
],
"bugs": {
"url": "https://github.com/holochain/holochain-client-js/issues"
},
"homepage": "https://github.com/holochain/holochain-client-js#readme",
"engines": {
"node": ">=18.0.0 || >=20.0.0"
},
"main": "lib/index.js",
"module": "lib/index.js",
"type": "module",
"exports": {
".": "./lib/index.js"
},
"types": "lib/index.d.ts",
"files": [
"lib"
],
"scripts": {
"lint": "eslint --fix --ext .ts src test .eslintrc.cjs",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"test:app-agent": "RUST_LOG=error RUST_BACKTRACE=1 tsx test/e2e/app-websocket.ts",
"test:utils": "RUST_LOG=error RUST_BACKTRACE=1 tsx test/e2e/utils.ts",
"test": "RUST_LOG=error RUST_BACKTRACE=1 tsx test/index.ts",
"build:lib": "rimraf ./lib && tsc -p tsconfig.build.json",
"build:docs": "api-extractor run --local && api-documenter markdown -i docs/temp -o docs",
"build": "npm run build:lib && npm run build:docs",
"prepublishOnly": "npm run lint && npm run build"
},
"dependencies": {
"@bitgo/blake2b": "^3.2.4",
"@msgpack/msgpack": "^2.8.0",
"emittery": "^1.0.1",
"isomorphic-ws": "^5.0.0",
"js-base64": "^3.7.5",
"js-sha512": "^0.9.0",
"libsodium-wrappers": "^0.7.13",
"lodash-es": "^4.17.21",
"ws": "^8.14.2"
},
"devDependencies": {
"@microsoft/api-documenter": "^7.21.7",
"@microsoft/api-extractor": "^7.34.4",
"@types/js-yaml": "4.0.9",
"@types/libsodium-wrappers": "^0.7.11",
"@types/lodash-es": "^4.17.6",
"@types/tape": "^4.13.2",
"@types/ws": "^8.5.5",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^8.49.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-tsdoc": "^0.2.17",
"js-yaml": "^4.1.0",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"tape": "^5.6.6",
"tsx": "^4.7.2",
"typescript": "^4.9.5"
}
}