@msw/cloudflare 0.0.0 → 0.0.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +9 -9
package/README.md CHANGED
@@ -7,7 +7,7 @@ Develop and test Cloudflare applications with Mock Service Worker.
7
7
  ### Install
8
8
 
9
9
  ```sh
10
- npm i https://pkg.pr.new/mswjs/cloudflare/@msw/cloudflare@beta msw
10
+ npm i @msw/cloudflare
11
11
  ```
12
12
 
13
13
  > This package requires `msw` as a peer dependency.
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "type": "module",
3
3
  "name": "@msw/cloudflare",
4
- "version": "0.0.0",
4
+ "version": "0.0.1",
5
5
  "description": "Mock API in Cloudflare with Mock Service Worker.",
6
6
  "exports": {
7
7
  ".": "./build/index.mjs"
@@ -9,13 +9,6 @@
9
9
  "files": [
10
10
  "./build"
11
11
  ],
12
- "scripts": {
13
- "start": "tsdown -w",
14
- "test": "vitest",
15
- "lint": "publint",
16
- "build": "tsdown",
17
- "publish": "release publish"
18
- },
19
12
  "keywords": [
20
13
  "cloudflare",
21
14
  "mock",
@@ -51,5 +44,12 @@
51
44
  "tsdown": "^0.21.10",
52
45
  "typescript": "^6.0.3",
53
46
  "vitest": "^4.1.5"
47
+ },
48
+ "scripts": {
49
+ "start": "tsdown -w",
50
+ "test": "vitest",
51
+ "lint": "publint",
52
+ "build": "tsdown",
53
+ "release": "release publish"
54
54
  }
55
- }
55
+ }