-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
75 lines (75 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
66
67
68
69
70
71
72
73
74
75
{
"name": "memfs-mirror",
"version": "0.1.1",
"description": "Copies an in-memory file system created using memfs or unionfs to a local file system.",
"type": "module",
"packageManager": "yarn@4.3.0",
"keywords": [
"filesystem",
"in-memory",
"memfs",
"mirror",
"sync",
"unionfs",
"virtual"
],
"homepage": "https://github.com/targendaz2/memfs-mirror#readme",
"bugs": {
"url": "https://github.com/targendaz2/memfs-mirror/issues"
},
"license": "Apache-2.0",
"files": [
"dist/"
],
"author": "David G Rosenberg <david@dgrdev.com>",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"lib": "dist"
},
"repository": "github:targendaz2/memfs-mirror",
"scripts": {
"build": "rm -rf dist && tsc --build",
"prepack": "yarn build",
"test": "NODE_OPTIONS=\"--experimental-vm-modules\" NODE_NO_WARNINGS=1 jest"
},
"dependencies": {
"unionfs": "^4.5.4"
},
"devDependencies": {
"@eslint/js": "^8.56.0",
"@jest/globals": "^29.7.0",
"@trivago/prettier-plugin-sort-imports": "^4.3.0",
"@tsconfig/node22": "^22.0.0",
"@types/eslint-config-prettier": "^6.11.3",
"@types/eslint__js": "^8.42.3",
"@types/node": "^20.14.2",
"@types/tmp": "^0.2.6",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.7.0",
"jest-extended-fs": "^0.2.0",
"memfs": "^4.9.2",
"prettier": "^3.3.1",
"tmp": "^0.2.3",
"ts-jest": "^29.1.4",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"typescript-eslint": "^7.12.0"
},
"peerDependencies": {
"memfs": "^4.9.2",
"unionfs": "^4.5.4"
},
"peerDependenciesMeta": {
"memfs": {
"optional": true
},
"unionfs": {
"optional": true
}
},
"engines": {
"node": "^22.0.0"
}
}