aboutsummaryrefslogtreecommitdiff
path: root/package.json
blob: 09b9b1f9956107828ecb1fa66ae33d01945849b6 (plain) (blame)
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
{
  "name": "tree-sitter-gsp",
  "version": "1.0.0",
  "description": "A tree-sitter parser for gsp",
  "main": "bindings/node",
  "types": "bindings/node",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "install": "node-gyp-build",
    "prebuildify": "prebuildify --napi --strip"
  },
  "repository": {
    "type": "git",
    "url": "https://git.sr.ht/~mango/tree-sitter-gsp.git"
  },
  "author": "Thomas Voss",
  "license": "0BSD",
  "bugs": {
    "url": "https://todo.sr.ht/~mango/tree-sitter-gsp"
  },
  "homepage": "https://git.sr.ht/~mango/tree-sitter-gsp#readme",
  "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": {
    "prebuildify": "^6.0.0"
  },
  "files": [
    "grammar.js",
    "binding.gyp",
    "prebuilds/**",
    "bindings/node/*",
    "queries/*",
    "src/**"
  ],
  "tree-sitter": [
    {
      "scope": "source.gsp",
      "injection-regex": "^gsp$"
    }
  ]
}