-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
executable file
·48 lines (48 loc) · 1.11 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
{
"name": "@cerebroapp/cerebro-shell",
"version": "1.0.0",
"description": "Cerebro plugin to execute any shell command from Cerebro search line",
"license": "MIT",
"repository": "cerebroapp/cerebro-shell",
"author": "Alexandr Subbotin <[email protected]> (asubbotin.ru)",
"contributors": [
"David Jiménez <[email protected]> (https://dubis.dev)"
],
"files": [
"dist",
"screenshot.gif"
],
"engines": {
"node": ">=16"
},
"scripts": {
"start": "cerebro-build start",
"build": "cerebro-build build",
"test": "cerebro-build test",
"prepublish": "cerebro-build clear && cerebro-build build"
},
"main": "dist/index.js",
"keywords": [
"cerebro-plugin",
"shell",
"bash",
"zsh",
"cerebro",
"exec"
],
"devDependencies": {
"@types/memoizee": "0.4.8",
"@types/node": "18.11.9",
"@types/react": "16.14.34",
"cerebro-build": "1.2.0"
},
"dependencies": {
"@cerebroapp/cerebro-ui": "2.0.0-alpha.3",
"shell-env": "4.0.1",
"shell-history": "2.0.0",
"memoizee": "0.4.15"
},
"publishConfig": {
"access": "public"
}
}