-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 1.97 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
{
"name": "@comapeo/ipc",
"version": "2.0.2",
"description": "IPC wrappers for CoMapeo Core",
"type": "module",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"engines": {
"node": ">=18.17.1"
},
"scripts": {
"format": "prettier **/*.{js,md} --write",
"lint": "eslint . --cache",
"types": "tsc -p tsconfig.json",
"test:unit": "node --test tests/*.js",
"test": "npm-run-all lint types test:unit",
"bench": "node bench/bench.js",
"build": "tsc -p tsconfig.npm.json",
"prepack": "npm run build",
"prepare": "husky install",
"release": "standard-version"
},
"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.1",
"p-defer": "^4.0.0",
"rpc-reflector": "^1.3.11"
},
"peerDependencies": {
"@comapeo/core": "^2.0.0"
},
"devDependencies": {
"@comapeo/core": "2.0.1",
"@digidem/types": "^2.1.0",
"@mapeo/crypto": "^1.0.0-alpha.8",
"@types/nanobench": "^3.0.0",
"@types/node": "^20.7.1",
"eslint": "^8.50.0",
"fastify": "^4.26.2",
"husky": "^8.0.0",
"lint-staged": "^14.0.1",
"nanobench": "^3.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"random-access-memory": "^6.2.0",
"standard-version": "^9.5.0",
"typescript": "^5.2.2"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"eslintConfig": {
"env": {
"commonjs": true,
"es2021": true,
"node": true
},
"extends": "eslint:recommended",
"parserOptions": {
"ecmaVersion": "latest",
"sourceType": "module"
}
},
"lint-staged": {
"*.{js,md}": "prettier . --write"
}
}