-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 2.33 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 2.33 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "tree-sitter-netlinx",
"version": "1.0.4",
"description": "NetLinx grammar for tree-sitter",
"repository": "https://github.com/Norgate-AV/tree-sitter-netlinx",
"license": "MIT",
"main": "bindings/node",
"types": "bindings/node",
"keywords": [
"incremental",
"parsing",
"tree-sitter",
"netlinx",
"amx",
"harman"
],
"files": [
"grammar.js",
"tree-sitter.json",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"src/**",
"*.wasm"
],
"dependencies": {
"node-addon-api": "^8.3.1",
"node-gyp-build": "^4.8.4"
},
"devDependencies": {
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/lint-staged": "^13.3.0",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.15.17",
"all-contributors-cli": "^6.26.1",
"commitizen": "^4.3.1",
"doctoc": "^2.2.1",
"eslint": "^9.26.0",
"eslint-config-prettier": "^10.1.5",
"eslint-config-treesitter": "^1.0.2",
"husky": "^9.1.7",
"lint-staged": "^15.5.2",
"micromatch": "^4.0.8",
"prebuildify": "^6.0.1",
"prettier": "^3.5.3",
"string-builder": "^0.1.8",
"tree-sitter-cli": "^0.25.3"
},
"peerDependencies": {
"tree-sitter": "^0.22.1"
},
"peerDependenciesMeta": {
"tree-sitter": {
"optional": true
}
},
"scripts": {
"commit": "git-cz",
"install": "node-gyp-build",
"prerebuild": "pnpm generate",
"rebuild": "node-gyp rebuild",
"lint": "eslint .",
"prestart": "tree-sitter build --wasm",
"start": "tree-sitter playground",
"test-node": "node --test bindings/node/*_test.js",
"prepare": "husky",
"doctoc": "doctoc README.md",
"generate": "tree-sitter generate --abi 14",
"pretest": "pnpm generate",
"test": "tree-sitter test",
"contrib:add": "all-contributors add",
"contrib:generate": "all-contributors generate",
"contrib:check": "all-contributors check"
},
"pnpm": {
"onlyBuiltDependencies": [
"tree-sitter",
"tree-sitter-cli"
]
}
}