-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
25 lines (25 loc) · 1002 Bytes
/
Copy pathpackage.json
File metadata and controls
25 lines (25 loc) · 1002 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
{
"name": "putiorr",
"version": "3.1.0",
"description": "A stable put.io bridge that presents a Transmission RPC interface for Sonarr, Radarr, and the rest of the *arr family.",
"license": "AGPL-3.0-only",
"type": "module",
"packageManager": "pnpm@10.33.0",
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"dev": "node --watch --disable-warning=ExperimentalWarning src/main.js",
"ext:package": "node scripts/package-extension.js",
"lint": "node scripts/lint.js",
"release:check": "pnpm release:gate",
"release:create": "node scripts/create-release.js",
"release:gate": "node scripts/release-gate.js",
"start": "node --disable-warning=ExperimentalWarning src/main.js",
"test": "node --disable-warning=ExperimentalWarning --test",
"test:coverage": "node --disable-warning=ExperimentalWarning --test --experimental-test-coverage --test-coverage-include='src/**/*.js' --test-coverage-lines=90"
},
"dependencies": {
"semver": "^7.8.4"
}
}