-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
91 lines (91 loc) · 2.47 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
{
"name": "tree-sitter-tact",
"version": "1.5.2",
"description": "A tree-sitter grammar for the Tact programming language",
"author": "Novus Nota (https://github.com/novusnota)",
"license": "MIT",
"homepage": "https://github.com/novusnota/tree-sitter-tact#readme",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/novusnota/tree-sitter-tact"
},
"bugs": {
"url": "https://github.com/novusnota/tree-sitter-tact/issues"
},
"keywords": [
"tact",
"lexer",
"parser",
"grammar",
"tree-sitter",
"ton",
"the-open-network"
],
"main": "bindings/node",
"types": "bindings/node",
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**"
],
"scripts": {
"ts": "tree-sitter",
"gen": "tree-sitter generate",
"gentest": "tree-sitter generate && tree-sitter test",
"parse": "tree-sitter parse",
"hi": "tree-sitter highlight",
"tags": "tree-sitter tags",
"fmt": "prettier --write grammar.js",
"check-fmt": "prettier --check grammar.js",
"nvim-clone": "git clone [email protected]:nvim-treesitter/nvim-treesitter",
"nvim-fmt": "nvim -l nvim-treesitter/scripts/format-queries.lua editor_queries/neovim",
"build": "tree-sitter generate --no-bindings",
"build-wasm": "tree-sitter build --wasm",
"play": "npm run build-warm && tree-sitter playground",
"prebuildify": "prebuildify --napi --strip",
"test:py": "python -m unittest discover bindings/python/tests",
"test:swift": "swift test",
"___________": "echo Below are auto-generated commands by Tree-sitter",
"install": "node-gyp-build",
"prestart": "tree-sitter build --wasm",
"start": "tree-sitter playground",
"test": "node --test bindings/node/*_test.js"
},
"dependencies": {
"node-addon-api": "^7.1.0",
"node-gyp-build": "^4.8.0"
},
"peerDependencies": {
"tree-sitter": "^0.21.0"
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
},
"devDependencies": {
"prettier": "^3.2.5",
"tree-sitter-cli": "^0.23.0",
"prebuildify": "^6.0.0"
},
"tree-sitter": [
{
"scope": "source.tact",
"injection-regex": "tact",
"file-types": [
"tact"
],
"highlights": "queries/highlights.scm",
"locals": "queries/locals.scm",
"tags": "queries/tags.scm"
}
],
"prettier": {
"singleQuote": false,
"semi": true
},
"packageManager": "[email protected]"
}