-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.8 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.8 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": "nitro-test-utils",
"type": "module",
"version": "3.0.0",
"packageManager": "pnpm@10.33.0",
"description": "Testing toolkit for Nitro full-stack servers",
"author": "Johann Schopplich <hello@johannschopplich.com>",
"license": "MIT",
"homepage": "https://github.com/johannschopplich/nitro-test-utils#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/johannschopplich/nitro-test-utils.git"
},
"bugs": {
"url": "https://github.com/johannschopplich/nitro-test-utils/issues"
},
"keywords": [
"nitro",
"nuxt",
"testing",
"vercel"
],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"./config": {
"types": "./dist/config.d.mts",
"default": "./dist/config.mjs"
},
"./e2e": {
"types": "./dist/e2e.d.mts",
"default": "./dist/e2e.mjs"
},
"./env": {
"types": "./env.d.ts"
}
},
"types": "./dist/index.d.mts",
"files": [
"dist",
"env.d.ts"
],
"scripts": {
"build": "tsdown",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"test": "vitest",
"test:types": "tsc --noEmit && pnpm -r test:types",
"release": "bumpp",
"prepare": "pnpm run build && pnpm -r prepare"
},
"peerDependencies": {
"nitro": "^3",
"vitest": "^4"
},
"dependencies": {
"cookie-es": "catalog:",
"dotenv": "catalog:",
"ofetch": "catalog:"
},
"devDependencies": {
"@antfu/eslint-config": "catalog:",
"@types/node": "catalog:",
"bumpp": "catalog:",
"eslint": "catalog:",
"eslint-flat-config-utils": "catalog:",
"nitro": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:",
"unbuild": "catalog:",
"vite": "catalog:",
"vitest": "catalog:"
}
}