-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
95 lines (95 loc) · 2.59 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "google-photos-uploader",
"displayName": "Google Photos Uploader(unofficial)",
"description": "find local image link, upload to Google Photos, and replace link",
"version": "2.2.5",
"engines": {
"vscode": "^1.65.0"
},
"author": "yumetodo",
"license": "BSL-1.0",
"publisher": "yumetodo",
"icon": "images/icon.png",
"categories": [
"Other"
],
"activationEvents": [
"onCommand:google-photos-uploader.upload"
],
"repository": {
"type": "git",
"url": "https://github.com/yumetodo/vscode-google-photos-uploader"
},
"main": "./dist/extension.js",
"contributes": {
"menus": {
"commandPalette": [
{
"command": "google-photos-uploader.upload",
"when": "editorLangId == markdown"
}
]
},
"commands": [
{
"command": "google-photos-uploader.upload",
"title": "google-photos-uploader: Upload image and replace"
},
{
"command": "google-photos-uploader.clear",
"title": "google-photos-uploader: Clear auth cache"
}
],
"configuration": [
{
"type": "object",
"title": "Google Photos Uploader Configuration",
"properties": {
"googlePhotosUploader.access_token": {
"type": "string",
"default": null,
"description": "Access Tokens. See RFC 6749 §10.3"
},
"googlePhotosUploader.refresh_token": {
"type": "string",
"default": null,
"description": "Refresh Tokens. See RFC 6749 §10.4"
}
}
}
]
},
"scripts": {
"vscode:prepublish": "webpack --mode production",
"webpack": "webpack --mode development",
"webpack-dev": "webpack --mode development --watch",
"test-compile": "tsc -p ./",
"lint": "eslint --ext .ts .",
"lint:fix": "eslint --fix --ext .ts .",
"build": "vsce package",
"deploy": "vsce publish",
"prettier": "prettier --write ."
},
"devDependencies": {
"@types/node": "^17.0.23",
"@types/vscode": "^1.65.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"eslint": "^8.12.0",
"eslint-config-prettier": "^8.5.0",
"prettier": "^2.6.1",
"ts-loader": "^9.2.8",
"typescript": "^4.6.3",
"vsce": "^2.7.0",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2"
},
"dependencies": {
"abort-controller": "^3.0.0",
"gaxios": "^4.3.2",
"google-photos-album-image-url-fetch": "^2.2.2",
"googleapis": "^99.0.0",
"markdown_img_url_editor": "^4.1.1",
"portfinder": "^1.0.28"
}
}