-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 1.87 KB
/
Copy pathpackage.json
File metadata and controls
76 lines (76 loc) · 1.87 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": "opfs-mock",
"version": "2.8.0",
"packageManager": "npm@12.0.1",
"type": "module",
"description": "Mock all origin private file system APIs for your Jest or Vitest tests",
"author": "Jure Rotar <hello@jurerotar.com>",
"license": "MIT",
"homepage": "https://github.com/jurerotar/opfs-mock#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/jurerotar/opfs-mock.git"
},
"bugs": {
"url": "https://github.com/jurerotar/opfs-mock/issues"
},
"keywords": [
"vitest",
"jest",
"test",
"mock",
"opfs",
"storage",
"node",
"browser"
],
"publishConfig": {
"access": "public"
},
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
"module-sync": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
}
},
"files": [
"dist"
],
"engines": {
"node": ">=20.0.0"
},
"allowScripts": {
"fsevents@2.3.3": false
},
"scripts": {
"dev": "tsdown --watch",
"build": "tsdown",
"lint:check": "npx @biomejs/biome lint",
"lint": "npx @biomejs/biome lint --fix",
"format:check": "npx @biomejs/biome format",
"format": "npx @biomejs/biome format --write",
"type-check": "tsc",
"test": "npm run test:node && npm run test:happy-dom",
"test:node": "vitest --environment=node",
"test:jsdom": "vitest --environment=jsdom",
"test:happy-dom": "vitest --environment=happy-dom",
"prepublishOnly": "npm run build",
"release": "npm publish --access public"
},
"devDependencies": {
"@biomejs/biome": "2.5.5",
"@vitest/coverage-v8": "4.1.10",
"@web-std/file": "3.0.3",
"happy-dom": "20.11.1",
"jsdom": "30.0.0",
"tsdown": "0.22.14",
"typescript": "7.0.2",
"vitest": "4.1.10"
}
}