-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 1.59 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
{
"name": "laravel.novaextension",
"version": "1.9.0",
"description": "Laravel Extension for Nova editor by panic. Providing syntax highlightin, folding and injection support using tree-sitter-blade plus autocompletiton, snippets and many more features in the future...",
"main": "index.js",
"workspaces": [
"tree-sitter-blade",
"tree-sitter-php"
],
"scripts": {
"test": "npm run test -w tree-sitter-blade",
"prebuild": "npm run build -w tree-sitter-blade",
"build": "./TreeSitterParserBuild/compile_parser.sh ${PWD}/tree-sitter-blade /Applications/Nova.app/ && ./TreeSitterParserBuild/compile_parser.sh ${PWD}/tree-sitter-php/tree-sitter-php-only /Applications/Nova.app/ ",
"postbuild": "npm run move && npm run clean && npm run sign",
"move": "mv ./build/lib/*.dylib ./Laravel.novaextension/Syntaxes/",
"clean": "rm -rf ./build ./tree-sitter-blade/*.dylib ./tree-sitter-blade/*.o ./tree-sitter-blade/build ./tree-sitter-php/tree-sitter-php-only/*.dylib ./tree-sitter-php/tree-sitter-php-only/src/*.o",
"sign": "codesign -s - ./Laravel.novaextension/Syntaxes/libtree-sitter-blade.dylib && codesign -s - ./Laravel.novaextension/Syntaxes/libtree-sitter-php_only.dylib"
},
"repository": {
"type": "git",
"url": "git+https://github.com/EmranMR/Laravel-Nova-Extension.git"
},
"keywords": [
"Laravel",
"blade",
"Nova",
"Livewire"
],
"author": "Emran Ramezan",
"license": "MIT",
"bugs": {
"url": "https://github.com/EmranMR/Laravel-Nova-Extension/issues"
},
"homepage": "https://github.com/EmranMR/Laravel-Nova-Extension#readme"
}