-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.77 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 1.77 KB
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": "@comapeo/ipc",
"version": "8.0.0",
"description": "IPC wrappers for CoMapeo Core",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"./client.js": {
"types": "./dist/client.d.ts",
"default": "./dist/client.js"
},
"./server.js": {
"types": "./dist/server.d.ts",
"default": "./dist/server.js"
}
},
"engines": {
"node": ">=18.17.1"
},
"scripts": {
"build": "tsc -p tsconfig.npm.json",
"check:eslint": "eslint . --cache",
"check:format": "prettier --check --cache .",
"check:types": "tsc",
"check": "npm-run-all --parallel --continue-on-error --print-label --aggregate-output check:*",
"prepack": "npm run build",
"prepare": "husky",
"test": "node --test tests/*.js"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/digidem/comapeo-ipc.git"
},
"keywords": [
"mapeo",
"ipc"
],
"author": {
"name": "Andrew Chou"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/digidem/comapeo-ipc/issues"
},
"homepage": "https://github.com/digidem/comapeo-ipc#readme",
"dependencies": {
"eventemitter3": "^5.0.4",
"p-defer": "^4.0.1",
"rpc-reflector": "^3.0.1"
},
"peerDependencies": {
"@comapeo/core": "^7.0.1"
},
"devDependencies": {
"@comapeo/core": "7.0.1",
"@eslint/js": "9.39.4",
"@mapeo/crypto": "1.0.0-alpha.10",
"@types/node": "24.12.0",
"eslint": "9.39.4",
"fastify": "4.29.1",
"globals": "17.4.0",
"husky": "9.1.7",
"lint-staged": "15.5.2",
"npm-run-all2": "7.0.2",
"prettier": "3.8.1",
"typescript": "5.9.3"
}
}