-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
116 lines (116 loc) · 3.23 KB
/
Copy pathpackage.json
File metadata and controls
116 lines (116 loc) · 3.23 KB
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
{
"name": "domain-graph-vscode",
"displayName": "Domain Graph for VSCode",
"description": "Beautiful, interactive visualizations for GraphQL schemas",
"version": "0.0.8",
"repository": {
"type": "git",
"url": "https://github.com/domain-graph/vscode.git"
},
"bugs": {
"url": "https://github.com/domain-graph/vscode/issues"
},
"homepage": "https://github.com/domain-graph/vscode/blob/master/README.md",
"license": "MIT",
"author": {
"name": "Steve Konves",
"email": "stephen.konves@gmail.com",
"url": "https://github.com/skonves"
},
"publisher": "stevekonves",
"engines": {
"vscode": "^1.59.0"
},
"icon": "resources/icon.png",
"categories": [
"Visualization",
"Other"
],
"activationEvents": [
"onCommand:domain-graph-vscode.showPreview",
"onCommand:domain-graph-vscode.showSource"
],
"main": "./dist/extension.js",
"contributes": {
"commands": [
{
"command": "domain-graph-vscode.showPreview",
"title": "Domain Graph: Open Preview",
"icon": "$(open-preview)",
"shortTitle": "Open Preview"
},
{
"command": "domain-graph-vscode.showSource",
"title": "Domain Graph: Show Source",
"icon": "$(go-to-file)",
"shortTitle": "Show Source"
}
],
"menus": {
"editor/title": [
{
"when": "resourceExtname == .graphql",
"command": "domain-graph-vscode.showPreview",
"group": "navigation"
},
{
"when": "domainGraphPreviewFocus",
"command": "domain-graph-vscode.showSource",
"group": "navigation"
}
]
}
},
"scripts": {
"vscode:prepublish": "npm run build",
"pretest": "rm -rf coverage/*",
"lint": "eslint . && prettier -c .",
"test": "jest",
"prebuild": "npm run lint && rm -rf dist/*",
"build": "tsc -p tsconfig.extension.json && webpack --config webpack.prod.js",
"tsc": "tsc",
"webpack": "webpack --config webpack.prod.js",
"lint:fix": "eslint --fix src/**/*.ts && prettier -w ."
},
"devDependencies": {
"@types/glob": "^7.1.3",
"@types/jest": "^27.0.1",
"@types/node": "^14.17.9",
"@types/react": "^17.0.18",
"@types/react-dom": "^17.0.9",
"@types/uuid": "^8.3.1",
"@types/vscode": "^1.59.0",
"@types/vscode-webview": "^1.57.0",
"@typescript-eslint/eslint-plugin": "^4.29.2",
"@typescript-eslint/parser": "^4.29.2",
"css-hot-loader": "^1.4.4",
"css-loader": "^6.5.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.24.0",
"eslint-plugin-react-hooks": "^4.2.0",
"glob": "^7.1.7",
"html-webpack-plugin": "^5.5.0",
"jest": "^27.0.6",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"mini-css-extract-plugin": "^2.4.5",
"prettier": "^2.3.2",
"ts-jest": "^27.0.5",
"ts-loader": "^9.2.6",
"typed-emitter": "^1.3.1",
"typescript": "^4.3.5",
"vscode-test": "^1.5.2",
"webpack": "^5.64.4",
"webpack-cli": "^4.9.1",
"webpack-dev-server": "^4.6.0",
"webpack-merge": "^5.8.0"
},
"dependencies": {
"domain-graph": "^0.5.2",
"graphql": "^15.5.1",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"uuid": "^8.3.2"
}
}