-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
139 lines (139 loc) · 3.43 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
{
"name": "vsg",
"displayName": "vsg - GitHub Explore",
"description": "Explore Github repositories directly from Visual Studio Code.",
"version": "0.2.0",
"publisher": "lencx",
"author": "lencx <cxin1314@gmail.com>",
"license": "MIT",
"scripts": {
"pack": "vsce package --yarn",
"pub": "vsce publish --yarn",
"vscode:prepublish": "yarn run build",
"compile": "tsc -p tsconfig.extension.json",
"watch": "tsc -watch -p tsconfig.extension.json",
"pretest": "yarn run compile && yarn run lint",
"start": "react-scripts start",
"build": "./scripts/build-non-split.js && yarn run compile",
"test": "node ./build/test/runTest.js",
"lint": "eslint src --ext ts",
"eject": "react-scripts eject"
},
"icon": "public/vsg.png",
"homepage": "https://github.com/lencx/vsg",
"repository": {
"type": "git",
"url": "https://github.com/lencx/vsg.git"
},
"engines": {
"vscode": "^1.51.0"
},
"bugs": {
"url": "https://github.com/lencx/vsg/issues"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:vsg.start",
"onView:vsg.panel"
],
"main": "./build/ext-src/extension.js",
"keywords": ["vscode", "extension", "github", "vsg", "trending"],
"contributes": {
"commands": [
{
"command": "vsg.start",
"title": "Open Github Explore",
"category": "vsg"
}
],
"viewsContainers": {
"activitybar": [
{
"id": "vsg",
"title": "vsg 🔥 GitHub",
"icon": "media/vsg.svg"
}
]
},
"views": {
"vsg": [
{
"type": "webview",
"id": "vsg.panel",
"name": "vsg 🔥 GitHub",
"icon": "media/vsg.svg",
"contextualTitle": "vsg 🔥 GitHub"
}
]
},
"configuration": {}
},
"dependencies": {
"@material-ui/core": "^4.11.2",
"@material-ui/icons": "^4.11.2",
"@material-ui/lab": "^4.0.0-alpha.57",
"@octokit/core": "^3.2.4",
"dayjs": "^1.9.7",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-router": "^5.2.0",
"react-router-dom": "^5.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^5.11.4",
"@testing-library/react": "^11.1.0",
"@testing-library/user-event": "^12.1.10",
"@types/glob": "^7.1.3",
"@types/jest": "^26.0.15",
"@types/lodash": "^4.14.165",
"@types/mocha": "^8.0.0",
"@types/node": "^12.0.0",
"@types/react": "^16.9.53",
"@types/react-dom": "^16.9.8",
"@types/react-router-dom": "^5.1.6",
"@types/vscode": "^1.51.0",
"@typescript-eslint/eslint-plugin": "^4.1.1",
"@typescript-eslint/parser": "^4.1.1",
"eslint": "^7.9.0",
"glob": "^7.1.6",
"husky": ">=4",
"lint-staged": ">=10",
"mocha": "^8.1.3",
"node-sass": "^4.14.1",
"prettier": "^2.2.1",
"react-scripts": "4.0.1",
"rewire": "^5.0.0",
"typescript": "^4.0.3",
"vscode-test": "^1.4.0",
"web-vitals": "^0.2.4"
},
"eslintConfig": {
"extends": [
"react-app",
"react-app/jest"
]
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{ts,tsx}": "eslint --cache --fix",
"*.{js,scss,css}": "prettier --write"
}
}