-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 957 Bytes
/
package.json
File metadata and controls
22 lines (22 loc) · 957 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "jano-plugin-shell",
"version": "1.1.0",
"description": "Shell/Bash syntax highlighting and validation plugin for jano editor",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "esbuild src/index.ts --bundle --format=esm --platform=node --outfile=dist/index.js",
"install-plugin": "pnpm build && node -e \"const fs=require('fs'),p=require('path'),d=p.join(require('os').homedir(),'.local','share','jano','plugins','shell');fs.mkdirSync(d,{recursive:true});fs.cpSync('dist/index.js',p.join(d,'index.js'));fs.cpSync('plugin.json',p.join(d,'plugin.json'));console.log('Installed to',d)\""
},
"devDependencies": {
"@jano-editor/plugin-types": "^1.0.0-alpha.4",
"esbuild": "^0.24.0"
},
"license": "MIT",
"author": "jano-editor",
"homepage": "https://github.com/jano-editor/plugin-shell",
"repository": {
"type": "git",
"url": "git+https://github.com/jano-editor/plugin-shell.git"
}
}