-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
89 lines (89 loc) · 2.48 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
{
"name": "github-blogger",
"displayName": "Github Blogger",
"description": "Use GitHub Issue as your blog",
"version": "1.0.0",
"publisher": "Frankie",
"engines": {
"vscode": "^1.62.0"
},
"categories": [
"Notebooks"
],
"repository": {
"type": "git",
"url": "https://github.com/toFrankie/github-blogger.git"
},
"activationEvents": [],
"main": "./dist/extension.js",
"icon": "./images/icon.png",
"contributes": {
"configuration": {
"title": "GitHub Blogger",
"properties": {
"github-blogger.token": {
"type": "string",
"description": "Your GitHub Personal Access Token",
"default": ""
},
"github-blogger.user": {
"type": "string",
"description": "Your GitHub Username",
"default": ""
},
"github-blogger.repo": {
"type": "string",
"description": "Your Blog Repository Name",
"default": ""
},
"github-blogger.branch": {
"type": "string",
"description": "Your Blog Repository Branch Name",
"default": "main"
}
}
},
"commands": [
{
"command": "github-blogger.open",
"title": "Open Github Blogger"
},
{
"command": "github-blogger.config",
"title": "Config Github Blogger"
}
]
},
"scripts": {
"package": "vsce package --no-dependencies",
"prepackage": "run-s build:webview-ui build:ext",
"start:ext": "vite build --watch",
"build:ext": "vite build",
"start:webview-ui": "cd webview-ui && pnpm start",
"build:webview-ui": "cd webview-ui && pnpm build",
"lint": "run-s lint:eslint lint:prettier",
"lint:eslint": "eslint 'src/**/*.{js,jxs}' --cache --fix",
"lint:prettier": "prettier . '!**/pnpm-lock.yaml' --cache --write",
"lint:stylelint": "stylelint 'src/**/*.css' --cache --fix"
},
"devDependencies": {
"@ifanrx/eslint-config-standard": "^1.2.6",
"@ifanrx/eslint-config-standard-react": "^1.1.2",
"@ifanrx/prettier-config-standard": "^1.1.2",
"@ifanrx/stylelint-config-standard": "^1.1.3",
"@types/vscode": "^1.62.0",
"@vscode/vsce": "^2.21.1",
"eslint": "^8.52.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.3",
"stylelint": "^15.11.0",
"typescript": "^5.2.2",
"vite": "^5.0.2"
},
"dependencies": {
"@octokit/core": "^5.0.1",
"core-js": "^3.33.1",
"js-base64": "^3.7.5",
"vscode-webview-rpc": "^0.0.4"
}
}