-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
65 lines (65 loc) · 1.73 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
{
"name": "y-holochain",
"version": "0.0.5",
"description": "holochain provider for yjs",
"author": "Build Your Web App",
"license": "Apache 2.0",
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@chainsafe/libp2p-noise": "^4.1.1",
"@holochain/tryorama": "^0.15.0-rc.1",
"@types/jest": "^27.0.3",
"@types/lodash-es": "^4.17.8",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"babel-jest": "^27.4.2",
"eslint": "^8.45.0",
"eslint-config-prettier": "^8.8.0",
"eslint-config-standard-with-typescript": "^36.1.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^16.0.1",
"eslint-plugin-prettier": "^5.0.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-vue": "^9.15.1",
"jest": "^27.4.3",
"libp2p-gossipsub": "^0.11.4",
"libp2p-mplex": "^0.10.4",
"libp2p-websockets": "^0.16.2",
"multiaddr": "^10.0.1",
"typescript": "^5.1.6",
"yjs-types": "^0.0.1"
},
"engines": {
"node": ">=16.0.0"
},
"scripts": {
"build": "tsc",
"build-watch": "tsc -w",
"preinstall": "npm run build",
"test": "npm run build && npm -w tests run test",
"start": "npm run build && npm -w tests run start"
},
"workspaces": [
"tests"
],
"dependencies": {
"@holochain/client": "^0.16.0",
"@msgpack/msgpack": "^3.0.0-beta2",
"lodash-es": "^4.17.21",
"peer-id": ">=0.16.0",
"y-protocols": "^1.0.x",
"yjs": "^13.6.7"
},
"module": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./locales/*": "./locales/*",
"./dist/*": "./dist/*"
},
"files": [
"dist"
],
"type": "module"
}