-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
99 lines (99 loc) · 2.32 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
{
"name": "vscode-tree-sitter",
"displayName": "Tree Sitter [Deprecated]",
"description": "Accurate syntax coloring with tree-sitter",
"icon": "tree-sitter-small.png",
"version": "0.1.26",
"preview": true,
"publisher": "georgewfraser",
"repository": {
"type": "git",
"url": "https://github.com/georgewfraser/vscode-tree-sitter"
},
"license": "MIT",
"extensionKind": [
"ui"
],
"engines": {
"vscode": "^1.34.0"
},
"categories": [
"Programming Languages",
"Themes",
"Other"
],
"activationEvents": [
"onLanguage:go",
"onLanguage:cpp",
"onLanguage:rust",
"onLanguage:ruby",
"onLanguage:typescript",
"onLanguage:javascript"
],
"main": "./out/extension.js",
"contributes": {
"grammars": [
{
"language": "go",
"scopeName": "source.go",
"path": "./textmate/go.tmLanguage.json"
},
{
"language": "cpp",
"scopeName": "source.cpp",
"path": "./textmate/cpp.tmLanguage.json"
},
{
"language": "ruby",
"scopeName": "source.ruby",
"path": "./textmate/ruby.tmLanguage.json"
},
{
"language": "rust",
"scopeName": "source.rust",
"path": "./textmate/rust.tmLanguage.json"
},
{
"language": "typescript",
"scopeName": "source.ts",
"path": "./textmate/typescript.tmLanguage.json"
},
{
"language": "javascript",
"scopeName": "source.ts",
"path": "./textmate/typescript.tmLanguage.json"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"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",
"tree-sitter-cli": "^0.16.5",
"tree-sitter-cpp": "^0.16.0",
"tree-sitter-go": "^0.16.0",
"tree-sitter-javascript": "^0.16.0",
"tree-sitter-ruby": "^0.16.1",
"tree-sitter-rust": "^0.16.0",
"tree-sitter-typescript": "^0.16.1",
"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.16.2"
}
}