-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1.18 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
{
"private": true,
"type": "module",
"license": "MIT",
"bin": {
"comapeo-headless": "./src/main.js"
},
"scripts": {
"start": "node src/main.js",
"format": "prettier --write .",
"test:prettier": "prettier --check .",
"test:eslint": "eslint --cache .",
"test:typescript": "tsc",
"test:node": "node --test",
"test": "npm-run-all --aggregate-output --print-label --parallel test:*",
"watch:test:typescript": "tsc --watch",
"watch:test:node": "npm run test:node -- --watch"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/node": "^22.10.1",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"npm-run-all2": "^7.0.1",
"prettier": "^3.4.1",
"random-access-memory": "^6.2.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"undici": "^7.1.0"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"dependencies": {
"@comapeo/core": "^2.2.0",
"@mapeo/legacy-export-format": "^0.1.0",
"bonjour-service": "^1.3.0",
"commander": "^12.1.0",
"env-paths": "^3.0.0",
"fastify": "^4.28.1",
"p-props": "^6.0.0",
"tempy": "^3.1.0",
"valibot": "^1.0.0-beta.9"
}
}