-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 2.06 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 2.06 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
77
{
"name": "@crazydos/nuxt-msw",
"version": "1.0.2",
"description": "Nuxt module integration for MSW (Mock Service Worker)",
"author": {
"name": "shunnNet",
"email": "wendell20904102@gmail.com",
"url": "https://github.com/shunnNet"
},
"repository": {
"type": "github",
"url": "https://github.com/shunnNet/nuxt-msw"
},
"license": "MIT",
"type": "module",
"exports": {
".": {
"types": "./dist/types.d.ts",
"import": "./dist/module.mjs",
"require": "./dist/module.cjs"
},
"./test-utils": {
"types": "./dist/runtime/test-utils.d.ts",
"import": "./dist/runtime/test-utils.mjs"
}
},
"main": "./dist/module.cjs",
"types": "./dist/types.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "sh scripts/build.sh",
"dev": "nuxi dev playground",
"dev:build": "nuxi build playground",
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground",
"release": "npm run lint && npm run test && npm run build && changelogen --release && npm publish && git push --follow-tags",
"lint": "eslint .",
"test": "vitest run",
"test:watch": "vitest watch",
"test:types": "vue-tsc --noEmit && cd playground && vue-tsc --noEmit",
"test:pl": "playwright test"
},
"dependencies": {
"@nuxt/kit": "^3.11.2"
},
"peerDependencies": {
"msw": "^2.x"
},
"devDependencies": {
"@nuxt/devtools": "^1.2.0",
"@nuxt/eslint-config": "^0.3.10",
"@nuxt/module-builder": "^0.6.0",
"@nuxt/schema": "^3.11.2",
"@nuxt/test-utils": "^3.12.1",
"@playwright/test": "^1.44.0",
"@types/node": "^20.12.11",
"@vue/test-utils": "^2.4.6",
"changelogen": "^0.5.5",
"eslint": "^9.2.0",
"h3": "^1.12.0",
"happy-dom": "^14.12.3",
"msw": "^2.3.0",
"nuxt": "^3.11.2",
"typescript": "latest",
"vitest": "^1.6.0",
"vitest-environment-nuxt": "^1.0.1",
"vue-tsc": "^2.0.16",
"ofetch": "^1.3.4",
"unimport": "^3.7.1"
},
"msw": {
"workerDirectory": [
"playground/public"
]
}
}