-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: do stuff on request by the parent application
- Move dev.ts to src/dev.ts - Update .npmignore and .gitignore to ignore data folder and TypeScript files - Remove unused config/config.ts file - Rename googleDriveService.ts to google-drive.ts - Update import paths in index.ts and utils/index.ts
- Loading branch information
1 parent
3bf189b
commit e8b7ba0
Showing
16 changed files
with
309 additions
and
244 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,8 +2,9 @@ | |
.changeset | ||
node_modules | ||
dist | ||
src/dev.ts | ||
data | ||
|
||
*.ts | ||
.gitignore | ||
.prettierignore | ||
eslint.config.js | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -45,4 +45,4 @@ module.exports = [ | |
}, | ||
}, | ||
}, | ||
]; | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,42 +1,49 @@ | ||
{ | ||
"name": "gdrivevault", | ||
"version": "1.0.0", | ||
"description": "", | ||
"main": "dist/index.js", | ||
"scripts": { | ||
"build": "tsc", | ||
"dev": "ts-node -r tsconfig-paths/register src/dev.ts", | ||
"clean": "shx rm -rf dist node_modules pnpm-lock.yaml", | ||
"lint": "eslint --fix --color src/**/*.ts", | ||
"prettier": "prettier --write src/**/*.ts" | ||
}, | ||
"keywords": [], | ||
"author": "David Duran <contacto@altmails.com>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@google-cloud/local-auth": "^3.0.1", | ||
"dotenv": "^16.4.5", | ||
"envalid": "^8.0.0", | ||
"google-auth-library": "^9.14.1", | ||
"googleapis": "^144.0.0", | ||
"node-fetch": "^2.6.6", | ||
"sqlite": "^5.1.1", | ||
"sqlite3": "^5.1.7", | ||
"winston": "^3.14.2" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^9.10.0", | ||
"@types/eslint__js": "^8.42.3", | ||
"@types/node": "^22.5.5", | ||
"@types/node-fetch": "^2.6.11", | ||
"eslint": "^9.10.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"prettier": "^3.3.3", | ||
"shx": "^0.3.4", | ||
"ts-node": "^10.9.2", | ||
"tsconfig-paths": "^4.2.0", | ||
"typescript": "^5.6.0", | ||
"typescript-eslint": "^8.8.0" | ||
} | ||
"name": "gdrivevault", | ||
"version": "1.0.0", | ||
"description": "Searching and downloading files from Google Drive folders should be easy", | ||
"main": "dist/index.js", | ||
"types": "dist/index.d.ts", | ||
"scripts": { | ||
"build": "tsc", | ||
"dev": "ts-node -r tsconfig-paths/register src/dev.ts", | ||
"clean": "shx rm -rf dist node_modules pnpm-lock.yaml", | ||
"lint": "eslint --fix --color src/**/*.ts", | ||
"prettier": "prettier --write src/**/*.ts" | ||
}, | ||
"keywords": [ | ||
"google-drive", | ||
"file-manager" | ||
], | ||
"author": "David Duran <contacto@altmails.com>", | ||
"license": "MIT", | ||
"dependencies": { | ||
"@google-cloud/local-auth": "^3.0.1", | ||
"dotenv": "^16.4.5", | ||
"envalid": "^8.0.0", | ||
"google-auth-library": "^9.14.1", | ||
"googleapis": "^144.0.0", | ||
"node-fetch": "^2.6.6", | ||
"sqlite": "^5.1.1", | ||
"sqlite3": "^5.1.7", | ||
"winston": "^3.14.2" | ||
}, | ||
"devDependencies": { | ||
"@eslint/js": "^9.10.0", | ||
"@types/eslint__js": "^8.42.3", | ||
"@types/node": "^22.5.5", | ||
"@types/node-fetch": "^2.6.11", | ||
"eslint": "^9.10.0", | ||
"eslint-config-prettier": "^9.1.0", | ||
"eslint-plugin-prettier": "^5.2.1", | ||
"prettier": "^3.3.3", | ||
"shx": "^0.3.4", | ||
"ts-node": "^10.9.2", | ||
"tsconfig-paths": "^4.2.0", | ||
"typescript": "^5.6.0", | ||
"typescript-eslint": "^8.8.0" | ||
}, | ||
"files": [ | ||
"dist" | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,11 @@ | ||
/* eslint-env node */ | ||
module.exports = { | ||
bracketSpacing: false, | ||
printWidth: 90, | ||
semi: true, | ||
singleQuote: true, | ||
tabWidth: 4, | ||
trailingComma: 'es5', | ||
useTabs: false, | ||
arrowParens: 'avoid', | ||
}; | ||
bracketSpacing: false, | ||
printWidth: 90, | ||
semi: true, | ||
singleQuote: true, | ||
tabWidth: 4, | ||
trailingComma: 'es5', | ||
useTabs: false, | ||
arrowParens: 'avoid', | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.