-
-
Notifications
You must be signed in to change notification settings - Fork 1.3k
/
Copy pathpackage.json
84 lines (84 loc) · 2.15 KB
/
package.json
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
{
"name": "@warp-drive/holodeck",
"description": "⚡️ Simple, Fast HTTP Mocking for Tests",
"version": "0.0.0-alpha.134",
"license": "MIT",
"author": "Chris Thoburn <runspired@users.noreply.github.com>",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:emberjs/data.git",
"directory": "packages/holodeck"
},
"homepage": "https://github.com/emberjs/data",
"bugs": "https://github.com/emberjs/data/issues",
"engines": {
"node": ">= 18.20.7"
},
"keywords": [
"http-mock"
],
"volta": {
"extends": "../../package.json"
},
"dependencies": {
"chalk": "^5.3.0",
"hono": "^4.7.2",
"@hono/node-server": "^1.13.8"
},
"type": "module",
"files": [
"bin",
"dist",
"README.md",
"LICENSE.md",
"server",
"unstable-preview-types",
"logos"
],
"bin": {
"ensure-cert": "./server/ensure-cert.js"
},
"scripts": {
"check:pkg-types": "tsc --noEmit",
"build:pkg": "vite build;",
"prepack": "pnpm run build:pkg",
"sync": "echo \"syncing\"",
"_temporarily_deactivated_lint": "eslint . --quiet --cache --cache-strategy=content",
"start": "vite"
},
"peerDependencies": {
"@ember-data/request": "workspace:*",
"@warp-drive/core-types": "workspace:*"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/plugin-transform-typescript": "^7.26.8",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@babel/runtime": "^7.26.9",
"@ember-data/request": "workspace:*",
"@warp-drive/core-types": "workspace:*",
"@warp-drive/internal-config": "workspace:*",
"vite": "^6.2.2"
},
"exports": {
".": {
"node": "./server/index.js",
"bun": "./server/index.js",
"deno": "./server/index.js",
"browser": {
"types": "./unstable-preview-types/index.d.ts",
"default": "./dist/index.js"
},
"import": {
"types": "./unstable-preview-types/index.d.ts",
"default": "./dist/index.js"
},
"default": "./server/index.js"
},
"./mock": {
"types": "./unstable-preview-types/mock.d.ts",
"default": "./dist/mock.js"
}
}
}