-
Notifications
You must be signed in to change notification settings - Fork 42
/
package.json
71 lines (71 loc) · 1.77 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
{
"name": "tree-sitter-swift",
"version": "0.6.0",
"description": "A tree-sitter grammar for the Swift programming language.",
"main": "bindings/node/index.js",
"types": "bindings/node",
"scripts": {
"install": "node-gyp-build",
"postinstall": "node-gyp configure && node-gyp build",
"build": "tree-sitter generate --no-bindings",
"build-wasm": "tree-sitter build --wasm",
"ci": "prettier --check grammar.js",
"test-ci": "./scripts/test-with-memcheck.sh --install-valgrind",
"test": "./scripts/test-with-memcheck.sh",
"prebuildify": "prebuildify --napi --strip"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alex-pinkus/tree-sitter-swift.git"
},
"tree-sitter": [
{
"scope": "source.swift",
"file-types": [
"swift"
],
"injection-regex": "swift",
"highlights": "queries/highlights.scm",
"locals": "queries/locals.scm",
"injections": "queries/injections.scm"
}
],
"keywords": [
"parser",
"swift"
],
"files": [
"grammar.js",
"binding.gyp",
"prebuilds/**",
"bindings/node/*",
"queries/*",
"scripts/*",
"src/**"
],
"author": "Alex Pinkus <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alex-pinkus/tree-sitter-swift/issues"
},
"homepage": "https://github.com/alex-pinkus/tree-sitter-swift#readme",
"dependencies": {
"node-addon-api": "^8.0.0",
"node-gyp-build": "^4.8.0",
"tree-sitter-cli": "^0.23",
"which": "2.0.2"
},
"peerDependencies": {
"tree-sitter": "^0.21.1"
},
"peerDependenciesMeta": {
"tree_sitter": {
"optional": true
}
},
"devDependencies": {
"node-gyp": "^10.0.1",
"prebuildify": "^6.0.0",
"prettier": "2.3.2"
}
}