-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.41 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.41 KB
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
{
"name": "@gram-data/tree-sitter-gram",
"version": "0.3.5",
"description": "subject-oriented notation for structured data",
"homepage": "https://gram-data.github.io",
"repository": {
"type": "git",
"url": "git+https://github.com/gram-data/tree-sitter-gram.git"
},
"main": "bindings/node",
"types": "bindings/node",
"scripts": {
"install": "node-gyp-build",
"prestart": "tree-sitter build --wasm",
"build": "tree-sitter build --wasm",
"start": "tree-sitter playground",
"test": "node --test bindings/node/*_test.js",
"zed:dev": "ZED_REPO_MODE=dev bash scripts/prepare-zed-extension.sh",
"zed:publish": "ZED_REPO_MODE=pub bash scripts/prepare-zed-extension.sh"
},
"keywords": [
"tree-sitter",
"parser",
"gram",
"json",
"zed",
"editor",
"syntax-highlighting"
],
"files": [
"grammar.js",
"tree-sitter.json",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**",
"editors/**",
"*.wasm"
],
"author": "",
"license": "ISC",
"dependencies": {
"node-addon-api": "^8.5.0",
"node-gyp-build": "^4.8.4"
},
"peerDependencies": {
"tree-sitter": "^0.25.0"
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
},
"devDependencies": {
"eslint": "^9.37.0",
"prebuildify": "^6.0.1",
"tree-sitter": "^0.25.0",
"tree-sitter-cli": "^0.26.5"
}
}