-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.24 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.24 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
{
"name": "@filen/cli",
"version": "0.0.0",
"description": "Filen CLI",
"main": "build/index.js",
"type": "module",
"scripts": {
"start": "bun run src/index.ts",
"lint": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --ext .js,.jsx,.ts,.tsx",
"lint-ci": "eslint \"src/**/*.{js,jsx,ts,tsx}\" --ext .js,.jsx,.ts,.tsx --format=@microsoft/eslint-formatter-sarif --output-file=eslint-report.sarif",
"test": "bun test --preload ./src/test/setup.ts --timeout 30_000",
"compile": "bun build --compile --target=bun --minify --sourcemap src/index.ts --outfile filen-cli --define IS_RUNNING_AS_BINARY=true",
"bump-filen-dependencies": "bun i @filen/sdk@latest @filen/sync@latest @filen/webdav@latest @filen/s3@latest @filen/network-drive@latest"
},
"bin": {
"filen": "build/index.js"
},
"engines": {
"node": "23"
},
"keywords": [
"filen"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FilenCloudDienste/filen-cli.git"
},
"author": "Filen",
"license": "AGPLv3",
"dependencies": {
"@filen/network-drive": "^0.9.44",
"@filen/s3": "^0.3.1",
"@filen/sdk": "^0.3.10",
"@filen/sync": "^0.2.1",
"@filen/webdav": "^0.3.1",
"@jupiterpi/node-keyring": "^0.1.1",
"arg": "^5.0.2",
"async-mutex": "^0.5.0",
"cheerio": "^1.0.0",
"cli-progress": "^3.12.0",
"dateformat": "^5.0.3",
"dedent": "^1.5.3",
"open": "^7.4.2",
"read": "^4.1.0",
"semver": "^7.6.3",
"uuid": "^11.1.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.25.1",
"@microsoft/eslint-formatter-sarif": "^3.1.0",
"@types/cli-progress": "^3.11.6",
"@types/dateformat": "^5.0.3",
"@types/node": "^22.9.0",
"@types/semver": "^7.7.0",
"@typescript-eslint/eslint-plugin": "^8.31.0",
"@typescript-eslint/parser": "^8.31.0",
"dotenv": "^16.5.0",
"eslint": "^9.25.1",
"globals": "^16.0.0",
"pe-library": "^1.0.1",
"resedit": "^2.0.3",
"rimraf": "^6.0.1",
"tsx": "^4.19.2",
"typescript": "^5.5.4",
"@types/bun": "latest"
},
"patchedDependencies": {
"@jupiterpi/node-keyring@0.1.1": "patches/@jupiterpi%2Fnode-keyring@0.1.1.patch",
"@parcel/watcher@2.5.1": "patches/@parcel%2Fwatcher@2.5.1.patch"
}
}