Skip to content

Commit 3bbbbe2

Browse files
authored
Merge pull request #1 from cloudflare/npm-prep
Prepping for NPM release
2 parents 00a82e7 + 546a9e0 commit 3bbbbe2

File tree

6 files changed

+1934
-22
lines changed

6 files changed

+1934
-22
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
/dist

package.json

Lines changed: 22 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,29 @@
11
{
2+
"name": "@cloudflare/workers-oauth-provider",
3+
"version": "0.0.1",
4+
"description": "OAuth provider for Cloudflare Workers",
5+
"main": "dist/oauth-provider.js",
6+
"types": "dist/oauth-provider.d.ts",
7+
"author": "Kenton Varda <[email protected]>",
8+
"license": "MIT",
9+
"files": [
10+
"dist"
11+
],
12+
"type": "module",
13+
"publishConfig": {
14+
"access": "public"
15+
},
16+
"scripts": {
17+
"build": "tsup",
18+
"test": "vitest",
19+
"prepublishOnly": "npm run build"
20+
},
221
"dependencies": {
3-
"@cloudflare/workers-types": "^4.20250303.0"
22+
"@cloudflare/workers-types": "^4.20250311.0"
423
},
524
"devDependencies": {
25+
"tsup": "^8.4.0",
26+
"typescript": "^5.8.2",
627
"vitest": "^1.2.2"
7-
},
8-
"scripts": {
9-
"test": "vitest"
1028
}
1129
}

0 commit comments

Comments
 (0)