-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 874 Bytes
/
Copy pathpackage.json
File metadata and controls
40 lines (40 loc) · 874 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
31
32
33
34
35
36
37
38
39
40
{
"name": "@motrix/plugin-cli",
"version": "2.1.1",
"type": "module",
"bin": {
"motrix-plugin": "dist/bin/motrix-plugin.js",
"create-motrix-plugin": "dist/bin/create-motrix-plugin.js"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"repository": {
"type": "git",
"url": "git+https://github.com/motrixapp/plugin-sdk.git",
"directory": "packages/plugin-cli"
},
"license": "MIT",
"scripts": {
"build": "tsup",
"typecheck": "tsc --noEmit",
"test": "vitest run"
},
"dependencies": {
"chokidar": "^5.0.0",
"commander": "^15.0.0",
"esbuild": "^0.28.2",
"yazl": "^3.3.1"
},
"devDependencies": {
"@motrix/plugin-manifest-schema": "workspace:*",
"@types/node": "^24",
"tsup": "^8.5.1",
"typescript": "^7.0.2",
"vitest": "^4.1.11",
"zod": "^4.5.4"
}
}