gdrivekit 1.0.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.

Potentially problematic release.


This version of gdrivekit might be problematic. Click here for more details.

Files changed (4) hide show
  1. package/README.md +15 -0
  2. package/dist/index.js +779095 -0
  3. package/index.ts +3 -0
  4. package/package.json +34 -0
package/index.ts ADDED
@@ -0,0 +1,3 @@
1
+ import * as operations from "./operations";
2
+ import { generateCredentialsAndTokens } from "./auth";
3
+ export { generateCredentialsAndTokens, operations };
package/package.json ADDED
@@ -0,0 +1,34 @@
1
+ {
2
+ "name": "gdrivekit",
3
+ "version": "1.0.0",
4
+ "description": "A lightweight Bun + TypeScript package for Google Drive OAuth2 authentication and file operations.",
5
+ "type": "module",
6
+ "main": "index.ts",
7
+ "types": "index.ts",
8
+ "scripts": {
9
+ "dev": "bun run index.ts",
10
+ "build": "bun build ./index.ts --outdir dist --target node",
11
+ "prepublishOnly": "bun run build"
12
+ },
13
+ "keywords": [
14
+ "google-drive",
15
+ "bun",
16
+ "typescript",
17
+ "googleapis",
18
+ "oauth2"
19
+ ],
20
+ "author": "Vikash Khati",
21
+ "license": "MIT",
22
+ "dependencies": {
23
+ "googleapis": "^164.1.0"
24
+ },
25
+ "peerDependencies": {
26
+ "typescript": "^5"
27
+ },
28
+ "devDependencies": {
29
+ "@types/node": "latest"
30
+ },
31
+ "files": [
32
+ "dist"
33
+ ]
34
+ }