-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 1.9 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
{
"name": "yarn2-dependency-explorer",
"license": "Apache-2.0",
"displayName": "yarn berry dependency explorer",
"description": "yarn berry dependency explorer",
"engines": {
"vscode": "^1.55.0"
},
"version": "0.0.3",
"main": "./dist/extension.js",
"publisher": "hahnlee",
"author": {
"name": "Han Lee",
"email": "[email protected]",
"url": "https://github.com/hahnlee"
},
"icon": "icon.png",
"categories": [
"Other"
],
"extensionDependencies": [
"arcanis.vscode-zipfs"
],
"activationEvents": [
"onView:yarnBerryDependencyExplorer"
],
"contributes": {
"views": {
"explorer": [
{
"id": "yarnBerryDependencyExplorer",
"name": "yarn berry dependency explorer"
}
]
}
},
"bugs": {
"url": "https://github.com/hahnlee/yarn-berry-dependency-explorer/issues",
"email": "[email protected]"
},
"repository": {
"type": "git",
"url": "https://github.com/hahnlee/yarn-berry-dependency-explorer.git"
},
"homepage": "https://github.com/hahnlee/yarn-berry-dependency-explorer/blob/main/README.md",
"scripts": {
"vscode:prepublish": "yarn run package",
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"lint": "eslint ./src"
},
"devDependencies": {
"@types/node": "^14.14.41",
"@types/vscode": "^1.55.0",
"@typescript-eslint/eslint-plugin": "^4.22.0",
"@typescript-eslint/parser": "^4.22.0",
"@yarnpkg/core": "^3.2.0",
"@yarnpkg/fslib": "^2.6.1",
"@yarnpkg/libzip": "^2.2.4",
"eslint": "^7.24.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-import-resolver-node": "^0.3.4",
"eslint-plugin-import": "^2.22.1",
"ts-loader": "^9.0.2",
"typescript": "^4.6.2",
"vsce-yarn-patch": "^1.66.2",
"webpack": "^5.35.0",
"webpack-cli": "^4.6.0"
}
}