generated from PlasmoHQ/qtt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.34 KB
/
package.json
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"name": "gcp-refresh-token",
"version": "0.9.2",
"description": "A cli util to retrieve a Google OAuth 2.0 refresh token",
"author": "Plasmo Corp. <[email protected]>",
"license": "MIT",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"gcp-refresh-token": "dist/cli.js",
"gcprt": "dist/cli.js"
},
"files": [
"dist"
],
"scripts": {
"dev": "run-p dev:*",
"dev:compile": "tsup src/cli.ts src/index.ts --watch --sourcemap",
"build": "tsup src/cli.ts src/index.ts --dts-resolve --format esm --minify --clean",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"prepublishOnly": "run-s build test"
},
"repository": {
"type": "git",
"url": "https://github.com/plasmohq/gcp-refresh-token.git"
},
"keywords": [
"gcp",
"google-api",
"refresh-token",
"browser-extension",
"chrome-webstore-api"
],
"dependencies": {
"get-port": "7.0.0",
"google-auth-library": "9.4.2",
"open": "10.0.3"
},
"devDependencies": {
"@jest/globals": "29.7.0",
"@jest/types": "29.6.3",
"@plasmo/config": "workspace:*",
"@plasmohq/rps": "workspace:*",
"@types/node": "20.11.5",
"cross-env": "7.0.3",
"jest": "29.7.0",
"prettier": "3.2.4",
"ts-jest": "29.1.1",
"tsup": "8.0.1",
"typescript": "5.3.3"
}
}