-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
65 lines (65 loc) · 1.79 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": "@mapeo/legacy-export-format",
"description": "reading and writing legacy Mapeo data archives",
"type": "module",
"version": "0.3.0",
"homepage": "https://github.com/digidem/mapeo-legacy-export-format",
"bugs": "https://github.com/digidem/mapeo-legacy-export-format/issues",
"author": "Awana Digital (https://awana.digital)",
"repository": "github:digidem/mapeo-legacy-export-format",
"exports": {
"import": "./src/index.js",
"types": "./dist/src/index.d.ts"
},
"files": [
"README.md",
"LICENSE.md",
"src",
"dist/src"
],
"scripts": {
"prepack": "npm run build",
"format": "prettier --write .",
"build": "tsc",
"test:prettier": "prettier --check .",
"test:eslint": "eslint --cache .",
"test:typescript": "tsc --noEmit",
"test:node": "node --test",
"test": "npm-run-all --aggregate-output --print-label --parallel test:*",
"watch:test:typescript": "npm run test:typescript -- --watch",
"watch:test:node": "npm run test:node -- --watch"
},
"license": "MIT",
"dependencies": {
"archiver": "^7.0.1",
"hypercore": "^7.7.1",
"hypercore-crypto": "^3.4.2",
"multifeed": "^4.3.0",
"p-event": "^6.0.1",
"valibot": "^1.0.0-beta.9",
"yauzl-promise": "^4.0.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/archiver": "^6.0.3",
"@types/node": "^22.10.1",
"@types/yauzl-promise": "^4.0.1",
"@types/yazl": "^2.4.5",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.4.2",
"tempy": "^3.1.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0"
},
"engines": {
"node": ">=18.20.0",
"engineStrict": true
},
"prettier": {
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}