-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.52 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
{
"name": "@inkandswitch/backchannel",
"version": "1.0.1",
"description": "",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.js",
"umd:main": "dist/umd/index.js",
"types": "dist/types/index.d.js",
"scripts": {
"build": "npm run build:cjs && npm run build:esm && npm run build:umd && npm run build:types",
"build:cjs": "node tools/cleanup cjs && tsc -p config/tsconfig.cjs.json",
"build:esm": "node tools/cleanup esm && tsc -p config/tsconfig.esm.json",
"build:umd": "node tools/cleanup umd && webpack --config config/webpack.config.js",
"build:types": "node tools/cleanup types && tsc -p config/tsconfig.types.json",
"relay": "cross-env DEBUG=* PORT=3001 node bin/server.js",
"lint": "prettier -c src",
"test": "jest src",
"format": "prettier -w src",
"docs": "typedoc src/ --excludeExternals --excludePrivate --excludeInternal --out build/docs/api --readme docs/readme.md"
},
"publishConfig": {
"access": "public"
},
"files": [
"dist"
],
"browser": {
"fs": false
},
"author": "Karissa McKelvey",
"license": "MIT",
"dependencies": {
"@localfirst/relay-client": "^3.5.0",
"automerge": "^1.0.1-preview.3",
"automerge-sync": "^1.0.3",
"bson": "^4.4.1",
"crypto-browserify": "^3.12.0",
"debug": "^4.3.1",
"dexie": "^3.0.3",
"enc-utils": "^3.0.0",
"path-browserify": "^1.0.1",
"randombytes": "^2.1.0",
"spake2-wasm": "^0.2.0",
"stream-browserify": "^3.0.0",
"util": "^0.12.4",
"uuid": "^8.3.2",
"webpack": "^5.51.1"
},
"devDependencies": {
"@babel/preset-env": "^7.15.0",
"@localfirst/relay": "^3.2.0",
"@peculiar/webcrypto": "^1.1.7",
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/user-event": "^12.1.10",
"@types/events": "^3.0.0",
"@types/jest": "^26.0.15",
"@types/node": "^12.0.0",
"babel-jest": "^27.0.6",
"babel-plugin-macros": "^3.1.0",
"base64-loader": "^1.0.0",
"buffer": "^6.0.3",
"copyfiles": "^2.4.1",
"cross-env": "^7.0.3",
"fake-indexeddb": "^3.1.3",
"jest-websocket-mock": "^2.2.0",
"jsdoc": "^3.6.6",
"mock-socket": "^9.0.3",
"prettier": "2.2.1",
"ts-jest": "^27.0.4",
"ts-loader": "^8.3.0",
"ts-node": "^10.2.0",
"typedoc": "^0.20.35",
"typescript": "^4",
"web-encoding": "^1.1.5",
"webcrypto-shim": "^0.1.7",
"webpack-cli": "^4.8.0"
},
"browserslist": {
"production": [
"defaults",
"not IE 11"
],
"web": [
"defaults",
"not IE 11"
]
}
}