-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Expand file tree
/
Copy pathpackage.json
More file actions
89 lines (89 loc) · 2.33 KB
/
Copy pathpackage.json
File metadata and controls
89 lines (89 loc) · 2.33 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
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "@warp-drive/holodeck",
"description": "⚡️ Simple, Fast HTTP Mocking for Tests",
"version": "0.1.0-alpha.68",
"license": "MIT",
"author": "Chris Thoburn <runspired@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:warp-drive-data/warp-drive.git",
"directory": "packages/holodeck"
},
"homepage": "https://github.com/warp-drive-data/warp-drive",
"bugs": "https://github.com/warp-drive-data/warp-drive/issues",
"engines": {
"node": ">= 24.20.0"
},
"keywords": [
"http-mock"
],
"dependencies": {
"hono": "^4.13.5",
"@hono/node-server": "^1.19.0"
},
"type": "module",
"files": [
"bin",
"dist",
"README.md",
"LICENSE.md",
"server",
"logos"
],
"bin": {
"ensure-cert": "./server/ensure-cert.js"
},
"scripts": {
"check:types": "node ./node_modules/typescript-7/bin/tsc --noEmit",
"build:pkg": "node node_modules/tsdown/dist/run.mjs",
"prepack": "pnpm run build:pkg",
"sync": "echo \"syncing\"",
"start": "node node_modules/tsdown/dist/run.mjs --watch"
},
"peerDependencies": {
"@warp-drive/utilities": "workspace:*",
"@warp-drive/legacy": "workspace:*",
"@warp-drive/core": "workspace:*"
},
"peerDependenciesMeta": {
"@warp-drive/utilities": {
"optional": true
},
"@warp-drive/legacy": {
"optional": true
}
},
"devDependencies": {
"@babel/core": "^7.29.7",
"@babel/plugin-transform-typescript": "^7.29.7",
"@babel/preset-env": "^7.29.7",
"@babel/preset-typescript": "^7.29.7",
"@babel/runtime": "^7.29.7",
"@warp-drive/utilities": "workspace:*",
"@warp-drive/legacy": "workspace:*",
"@warp-drive/core": "workspace:*",
"@warp-drive/internal-config": "workspace:*",
"tsdown": "^0.22.14",
"typescript-7": "npm:typescript@7.1.0-dev.20260828.1"
},
"exports": {
".": {
"node": "./server/index.js",
"bun": "./server/index.js",
"deno": "./server/index.js",
"browser": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"default": "./server/index.js"
},
"./mock": {
"types": "./dist/mock.d.ts",
"default": "./dist/mock.js"
}
}
}