-
-
Notifications
You must be signed in to change notification settings - Fork 63
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.69 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.69 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
{
"type": "module",
"name": "@msw/data",
"version": "1.1.2",
"description": "Data querying library for testing JavaScript applications.",
"scripts": {
"dev": "tsdown -w",
"test:node": "vitest",
"test:browser": "playwright test",
"lint": "publint",
"build": "tsdown",
"release": "release publish"
},
"imports": {
"#/src/*": "./src/*"
},
"exports": {
".": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
},
"./extensions": {
"types": "./build/extensions/index.d.ts",
"default": "./build/extensions/index.js"
},
"./extensions/sync": {
"types": "./build/extensions/sync.d.ts",
"default": "./build/extensions/sync.js"
},
"./extensions/persist": {
"types": "./build/extensions/persist.d.ts",
"default": "./build/extensions/persist.js"
}
},
"files": [
"./build",
"./src",
"./tests"
],
"keywords": [
"data",
"query",
"mock",
"model",
"testing",
"fake",
"msw"
],
"license": "MIT",
"author": "Artem Zakharchenko <kettanaito@gmail.com>",
"homepage": "https://github.com/mswjs/data",
"repository": {
"type": "git",
"url": "git+https://github.com/mswjs/data.git"
},
"devDependencies": {
"@ossjs/release": "^0.10.0",
"@playwright/test": "^1.55.1",
"@types/node": "^24.6.2",
"prettier": "^3.6.2",
"publint": "^0.3.13",
"tsdown": "^0.15.6",
"typescript": "^5.9.3",
"vite": "^7.1.9",
"vitest": "^3.2.4",
"zod": "^4.1.11"
},
"dependencies": {
"@standard-schema/spec": "^1.0.0",
"es-toolkit": "^1.39.10",
"mutative": "^1.3.0",
"outvariant": "^1.4.3",
"rettime": "^0.7.0"
}
}