@cloudflare/workers-auth 0.1.0

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.
package/package.json ADDED
@@ -0,0 +1,72 @@
1
+ {
2
+ "name": "@cloudflare/workers-auth",
3
+ "version": "0.1.0",
4
+ "description": "Internal OAuth 2.0 + PKCE flow for Cloudflare CLIs. Not intended for external use — APIs may change without notice.",
5
+ "homepage": "https://github.com/cloudflare/workers-sdk/tree/main/packages/workers-auth#readme",
6
+ "bugs": {
7
+ "url": "https://github.com/cloudflare/workers-sdk/issues"
8
+ },
9
+ "license": "MIT OR Apache-2.0",
10
+ "author": "workers-devprod@cloudflare.com",
11
+ "repository": {
12
+ "type": "git",
13
+ "url": "https://github.com/cloudflare/workers-sdk.git",
14
+ "directory": "packages/workers-auth"
15
+ },
16
+ "files": [
17
+ "dist"
18
+ ],
19
+ "sideEffects": false,
20
+ "exports": {
21
+ ".": {
22
+ "import": "./dist/index.mjs",
23
+ "types": "./dist/index.d.mts"
24
+ },
25
+ "./test-helpers": {
26
+ "import": "./dist/test-helpers/index.mjs",
27
+ "types": "./dist/test-helpers/index.d.mts"
28
+ }
29
+ },
30
+ "dependencies": {
31
+ "undici": "7.24.8",
32
+ "@cloudflare/workers-utils": "0.22.1"
33
+ },
34
+ "devDependencies": {
35
+ "@types/node": "22.15.17",
36
+ "@vitest/ui": "4.1.0",
37
+ "concurrently": "^8.2.2",
38
+ "msw": "2.12.4",
39
+ "smol-toml": "1.5.2",
40
+ "ts-dedent": "^2.2.0",
41
+ "tsup": "8.3.0",
42
+ "typescript": "5.8.3",
43
+ "vitest": "4.1.0",
44
+ "@cloudflare/workers-tsconfig": "0.0.0"
45
+ },
46
+ "peerDependencies": {
47
+ "msw": "2.12.4",
48
+ "vitest": "^4.1.0"
49
+ },
50
+ "peerDependenciesMeta": {
51
+ "msw": {
52
+ "optional": true
53
+ },
54
+ "vitest": {
55
+ "optional": true
56
+ }
57
+ },
58
+ "volta": {
59
+ "extends": "../../package.json"
60
+ },
61
+ "workers-sdk": {
62
+ "prerelease": true
63
+ },
64
+ "scripts": {
65
+ "build": "tsup",
66
+ "check:type": "tsc -p ./tsconfig.json",
67
+ "deploy": "echo 'no deploy'",
68
+ "dev": "concurrently -c black,blue --kill-others-on-fail false \"pnpm tsup --watch src\" \"pnpm run check:type --watch --preserveWatchOutput\"",
69
+ "test": "vitest",
70
+ "test:ci": "vitest run"
71
+ }
72
+ }