-
Notifications
You must be signed in to change notification settings - Fork 113
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.21 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.21 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
{
"name": "@cloudflare/workers-oauth-provider",
"version": "0.2.4",
"description": "OAuth provider for Cloudflare Workers",
"main": "dist/oauth-provider.js",
"types": "dist/oauth-provider.d.ts",
"author": "Kenton Varda <kenton@cloudflare.com>",
"license": "MIT",
"sideEffects": false,
"files": [
"dist"
],
"type": "module",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsdown",
"build:watch": "tsdown --watch",
"check": "npm run typecheck && npm run test",
"typecheck": "tsc",
"test": "vitest run",
"test:watch": "vitest",
"prepublishOnly": "npm run build",
"prettier": "prettier -w ."
},
"devDependencies": {
"@changesets/changelog-github": "^0.5.2",
"@changesets/cli": "^2.29.8",
"@cloudflare/workers-types": "^4.20251218.0",
"pkg-pr-new": "^0.0.62",
"prettier": "^3.7.4",
"tsdown": "^0.18.1",
"typescript": "^5.9.3",
"vitest": "^3.2.4"
},
"repository": {
"type": "git",
"url": "https://github.com/cloudflare/workers-oauth-provider"
},
"bugs": {
"url": "https://github.com/cloudflare/workers-oauth-provider/issues"
},
"homepage": "https://github.com/cloudflare/workers-oauth-provider#readme"
}