forked from SeniorMars/tree-sitter-typst
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.33 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
{
"name": "tree-sitter-typst",
"version": "1.0.0",
"description": "A TreeSitter parser for the typst file format",
"main": "bindings/node",
"scripts": {
"gen": "tree-sitter generate",
"test": "tree-sitter test",
"parse": "tree-sitter parse",
"debug": "tree-sitter parse --debug-build",
"build": "tree-sitter generate && node-gyp build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/SeniorMars/tree-sitter-typst.git"
},
"keywords": [
"typst",
"markup",
"treesitter",
"tree-sitter"
],
"author": "SeniorMars",
"license": "MIT",
"bugs": {
"url": "https://github.com/SeniorMars/tree-sitter-typst/issues"
},
"homepage": "https://github.com/SeniorMars/tree-sitter-typst#readme",
"dependencies": {
"nan": "^2.17.0"
},
"devDependencies": {
"eslint": "^8.36.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"tree-sitter-cli": "^0.20.7"
},
"tree-sitter": [
{
"scope": "source.typst",
"injection-regex": "typst",
"file-types": [
"typ"
]
}
]
}