-
Notifications
You must be signed in to change notification settings - Fork 47
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.93 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.93 KB
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "syno",
"version": "3.0.3",
"description": "Node.js wrapper and CLI for Synology DSM REST API 6.x and 7.x",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.mts",
"default": "./dist/index.mjs"
},
"require": {
"types": "./dist/index.d.cts",
"default": "./dist/index.cjs"
}
}
},
"bin": {
"syno": "./dist/cli.cjs"
},
"engines": {
"node": ">=24.0.0"
},
"scripts": {
"build": "tsdown",
"dev": "tsdown --watch",
"test": "vitest run",
"test:watch": "vitest",
"lint": "eslint src/",
"typecheck": "tsc --noEmit",
"clean": "rm -rf dist",
"fetch-defs": "tsx scripts/fetch-definitions.ts",
"compile-defs": "tsx scripts/fetch-definitions.ts --compile-only"
},
"repository": {
"type": "git",
"url": "https://github.com/kwent/syno.git"
},
"keywords": [
"syno",
"synology",
"dsm",
"filestation",
"downloadstation",
"audiostation",
"videostation",
"surveillancestation",
"synologyphotos"
],
"author": {
"name": "kwent",
"email": "contact@quent.in",
"url": "https://github.com/kwent"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kwent/syno/issues"
},
"homepage": "https://github.com/kwent/syno",
"dependencies": {
"commander": "^14.0.3",
"js-yaml": "^4.1.0",
"pluralize": "^8.0.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@msgpack/msgpack": "^3.1.3",
"@types/js-yaml": "^4.0.9",
"@types/libsodium-wrappers-sumo": "^0.8.2",
"@types/node": "^25.3.0",
"@types/pluralize": "^0.0.33",
"eslint": "^10.0.1",
"libsodium-wrappers-sumo": "^0.8.2",
"tsdown": "^0.22.0",
"tsx": "^4.0.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.0.0",
"vitest": "^4.0.18"
}
}