-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 809 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 809 Bytes
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
{
"name": "cloudflare-workers-and-google-oauth",
"version": "2.0.0",
"description": "Enables easier interfacing with GCS OAuth API for use in Cloudflare Workers",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"prepublishOnly": "npm run compile",
"compile": "npm run clean && tsc -p .",
"watch": "tsc -w -p .",
"clean": "rm -rf dist"
},
"keywords": [
"cloudflare",
"workers",
"cloudflare workers",
"google",
"oauth"
],
"author": "Ryan Schachte <hi@ryan-schachte.com>",
"license": "MIT",
"devDependencies": {
"@types/crypto-js": "^4.1.1",
"typescript": "^4.8.4"
},
"dependencies": {
"crypto-js": "^4.1.1",
"js-base64": "^3.7.2"
},
"files": [
"dist/index.js",
"dist/index.d.ts",
"dist/lib"
]
}