forked from cursorless-dev/vscode-parse-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 2.26 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
{
"name": "parse-tree",
"displayName": "Parse tree",
"description": "Access document syntax using tree-sitter",
"version": "0.9.0",
"publisher": "pokey",
"repository": {
"type": "git",
"url": "https://github.com/pokey/vscode-parse-tree"
},
"license": "MIT",
"extensionKind": [
"workspace"
],
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Programming Languages",
"Themes",
"Other"
],
"activationEvents": [
"onLanguage:c",
"onLanguage:cpp",
"onLanguage:csharp",
"onLanguage:go",
"onLanguage:html",
"onLanguage:java",
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:json",
"onLanguage:jsonc",
"onLanguage:markdown",
"onLanguage:python",
"onLanguage:ruby",
"onLanguage:rust",
"onLanguage:shellscript",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:xml",
"onLanguage:yaml"
],
"main": "./out/extension.js",
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"contributes": {},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./ && make parsers",
"watch": "tsc -watch -p ./",
"postinstall": "node ./node_modules/vscode/bin/install",
"test": "npm run compile && node ./out/test",
"benchmark": "npm run compile && node ./out/benchmark",
"debug": "npm run compile && node --nolazy --inspect-brk=9229 ./out/test",
"build": "vsce package -o build.vsix",
"publish": "vsce publish patch"
},
"devDependencies": {
"@types/mocha": "^2.2.42",
"@types/node": "^8.10.25",
"electron-rebuild": "^2.3.5",
"tree-sitter-bash": "^0.19.0",
"tree-sitter-c": "^0.19.0",
"tree-sitter-c-sharp": "^0.19.0",
"tree-sitter-cli": "^0.19.4",
"tree-sitter-cpp": "^0.19.0",
"tree-sitter-go": "^0.19.0",
"tree-sitter-html": "^0.19.0",
"tree-sitter-java": "^0.19.1",
"tree-sitter-javascript": "^0.19.0",
"tree-sitter-json": "^0.19.0",
"tree-sitter-markdown": "^0.7.1",
"tree-sitter-python": "^0.19.0",
"tree-sitter-ruby": "^0.19.0",
"tree-sitter-rust": "^0.19.0",
"tree-sitter-typescript": "^0.19.0",
"tree-sitter-yaml": "^0.5.0",
"tslint": "^6.0.0",
"typescript": "^3.8.2",
"vsce": "^1.73.0",
"vscode": "^1.1.36"
},
"dependencies": {
"jsonc-parser": "^2.1.0",
"tar": ">=4.4.2",
"web-tree-sitter": "^0.19.3"
}
}