-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
81 lines (81 loc) · 2.13 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
{
"name": "OPEN-RPC",
"displayName": "OPEN-RPC",
"publisher": "OPEN-RPC",
"description": "Provides completion and validation for OPEN-RPC openrpc.json documents",
"version": "1.2.7",
"repository": {
"type": "git",
"url": "https://github.com/open-rpc/editor-extensions-vscode.git"
},
"engines": {
"vscode": "^1.30.0"
},
"icon": "images/openrpc.png",
"categories": [
"Other"
],
"activationEvents": [
"onLanguage:json",
"onCommand:openrpc.previewDoc"
],
"main": "./build/extension/extension.js",
"contributes": {
"jsonValidation": [
{
"fileMatch": "*openrpc.json",
"url": "https://github.com/open-rpc/meta-schema/releases/download/1.7.0/open-rpc-meta-schema.json"
}
],
"commands": [
{
"command": "openrpc.previewDoc",
"title": "Start OpenRPC preview window",
"category": "Document Preview"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"build": "npm run compile",
"compile": "npm run lint && react-scripts build && tsc -p tsconfig.extension.json",
"watch": "tsc -watch -p tsconfig.extension.json",
"lint": "tslint --fix -p .",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./node_modules/vscode/bin/test"
},
"dependencies": {
"@material-ui/core": "^4.7.2",
"@material-ui/icons": "^4.5.1",
"@open-rpc/docs-react": "^1.1.5",
"@open-rpc/meta-schema": "^1.13.20",
"@open-rpc/schema-utils-js": "^1.11.3",
"monaco-editor": "^0.18.1",
"react": "^16.12.0",
"react-dom": "^16.12.0",
"uuid": "^3.3.2"
},
"browserslist": {
"production": [
">0.2%",
"not dead",
"not op_mini all"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^12.7.4",
"@types/react": "^16.8.14",
"@types/react-dom": "^16.8.4",
"@types/uuid": "^3.4.4",
"react-scripts": "^3.3.0",
"tslint": "^5.14.0",
"typescript": "^3.3.4000",
"vscode": "^1.1.33"
}
}