-
Notifications
You must be signed in to change notification settings - Fork 31
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update build script to account for configuration files
- Loading branch information
Steve Lee (POWERSHELL HE/HIM) (from Dev Box)
committed
Oct 23, 2024
1 parent
c88c4a0
commit 9509e22
Showing
5 changed files
with
57 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
windows_baseline.dsc.yaml | ||
windows_inventory.dsc.yaml |
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
{ | ||
"name": "tree-sitter-dscexpression", | ||
"version": "1.0.0", | ||
"description": "Dscexpression grammar for tree-sitter", | ||
"repository": "github:tree-sitter/tree-sitter-dscexpression", | ||
"license": "MIT", | ||
"main": "bindings/node", | ||
"types": "bindings/node", | ||
"keywords": [ | ||
"incremental", | ||
"parsing", | ||
"tree-sitter", | ||
"dscexpression" | ||
], | ||
"files": [ | ||
"grammar.js", | ||
"binding.gyp", | ||
"prebuilds/**", | ||
"bindings/node/*", | ||
"queries/*", | ||
"src/**", | ||
"*.wasm" | ||
], | ||
"dependencies": { | ||
"node-addon-api": "^8.1.0", | ||
"node-gyp-build": "^4.8.2" | ||
}, | ||
"devDependencies": { | ||
"prebuildify": "^6.0.1", | ||
"tree-sitter-cli": "^0.24.3" | ||
}, | ||
"peerDependencies": { | ||
"tree-sitter": "^0.21.1" | ||
}, | ||
"peerDependenciesMeta": { | ||
"tree-sitter": { | ||
"optional": true | ||
} | ||
}, | ||
"scripts": { | ||
"install": "node-gyp-build", | ||
"prestart": "tree-sitter build --wasm", | ||
"start": "tree-sitter playground", | ||
"test": "node --test bindings/node/*_test.js" | ||
}, | ||
"tree-sitter": [ | ||
{ | ||
"scope": "source.dscexpression", | ||
"injection-regex": "^dscexpression$" | ||
} | ||
] | ||
} |