bodevops-features 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.
- package/README.md +28 -0
- package/dist/cjs/index.js +13 -0
- package/dist/cjs/index.js.map +1 -0
- package/dist/esm/index.js +11 -0
- package/dist/esm/index.js.map +1 -0
- package/dist/types/gg-drive/index.d.ts +1 -0
- package/dist/types/gg-drive/test.d.ts +1 -0
- package/dist/types/index.d.ts +1 -0
- package/package.json +44 -0
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# bodevops-features
|
|
2
|
+
|
|
3
|
+
BoDevOps features library - a collection of utilities for Google Drive, Google Sheets, and iDrive e2 integrations.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install bodevops-features
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
```typescript
|
|
14
|
+
import { GGDrive } from 'bodevops-features';
|
|
15
|
+
|
|
16
|
+
// Use GGDrive utilities
|
|
17
|
+
GGDrive.test();
|
|
18
|
+
```
|
|
19
|
+
|
|
20
|
+
## Features
|
|
21
|
+
|
|
22
|
+
- **GGDrive**: Google Drive utilities
|
|
23
|
+
- **GGSheet**: Google Sheets utilities
|
|
24
|
+
- **iDrive E2**: iDrive E2 storage utilities
|
|
25
|
+
|
|
26
|
+
## License
|
|
27
|
+
|
|
28
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/gg-drive/test.ts"],"sourcesContent":["export const test = () => {\n console.log('test');\n};\n"],"names":[],"mappings":";;AAAO,MAAM,IAAI,GAAG,MAAK;AACvB,IAAA,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC;AACrB,CAAC;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../../../src/gg-drive/test.ts"],"sourcesContent":["export const test = () => {\n console.log('test');\n};\n"],"names":[],"mappings":"AAAO,MAAM,IAAI,GAAG,MAAK;AACvB,IAAA,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC;AACrB,CAAC;;;;;;;;;"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * from './test';
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export declare const test: () => void;
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export * as GGDrive from './gg-drive';
|
package/package.json
ADDED
|
@@ -0,0 +1,44 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bodevops-features",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "BoDevOps features library - utilities for Google Drive, Google Sheets, and iDrive e2",
|
|
5
|
+
"main": "dist/cjs/index.js",
|
|
6
|
+
"module": "dist/esm/index.js",
|
|
7
|
+
"types": "dist/types/index.d.ts",
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "https://github.com/HaiSonMin"
|
|
11
|
+
},
|
|
12
|
+
"exports": {
|
|
13
|
+
".": {
|
|
14
|
+
"require": "./dist/cjs/index.js",
|
|
15
|
+
"import": "./dist/esm/index.js",
|
|
16
|
+
"types": "./dist/types/index.d.ts"
|
|
17
|
+
}
|
|
18
|
+
},
|
|
19
|
+
"files": [
|
|
20
|
+
"dist"
|
|
21
|
+
],
|
|
22
|
+
"scripts": {
|
|
23
|
+
"build": "rollup -c && tsc --emitDeclarationOnly --outDir dist/types",
|
|
24
|
+
"prepublishOnly": "npm run build"
|
|
25
|
+
},
|
|
26
|
+
"publishConfig": {
|
|
27
|
+
"access": "public"
|
|
28
|
+
},
|
|
29
|
+
"keywords": [
|
|
30
|
+
"gg-drive",
|
|
31
|
+
"gg-sheet",
|
|
32
|
+
"idrive-e2"
|
|
33
|
+
],
|
|
34
|
+
"author": "BoDevOps",
|
|
35
|
+
"license": "MIT",
|
|
36
|
+
"devDependencies": {
|
|
37
|
+
"@rollup/plugin-commonjs": "^25.0.7",
|
|
38
|
+
"@rollup/plugin-node-resolve": "^15.2.3",
|
|
39
|
+
"@rollup/plugin-typescript": "^11.1.6",
|
|
40
|
+
"rollup": "^4.9.6",
|
|
41
|
+
"tslib": "^2.6.2",
|
|
42
|
+
"typescript": "^5.3.3"
|
|
43
|
+
}
|
|
44
|
+
}
|