-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 846 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 846 Bytes
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
{
"name": "@jpts/yaak-plugin-shell-command",
"displayName": "Shell Command",
"description": "A plugin for executing commands",
"homepage": "https://github.com/jpts/yaak-plugin-shell-command",
"repository": {
"type": "git",
"url": "git+https://github.com/jpts/yaak-plugin-shell-command.git"
},
"license": "MIT",
"private": true,
"version": "0.0.2",
"os": [
"darwin",
"linux"
],
"scripts": {
"build": "esbuild src/index.ts --bundle --outfile=build/index.js --format=cjs --platform=node --minify",
"dev": "esbuild src/index.ts --bundle --outfile=build/index.js --format=cjs --platform=node --watch"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/node": "^20.14.9",
"typescript": "^5.5.2",
"vitest": "^1.4.0"
},
"dependencies": {
"@yaakapp/api": "^0.2.16"
}
}