forked from FilenCloudDienste/filen-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.66 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 1.66 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
{
"name": "filen-cli",
"version": "0.0.0",
"description": "Filen CLI",
"main": "build/index.js",
"scripts": {
"start-dev": "tsc && node build/index.js",
"lint": "eslint src/**/* --ext .js,.jsx,.ts,.tsx",
"test": "jest",
"generateKey": "node generateKey.mjs",
"build": "tsc && node injectBuildInfo.mjs && esbuild build/index.js --bundle --outfile=dist/bundle.js --format=cjs --platform=node",
"package-dev": "npm run build && pkg -t node20 -o dist/filen-cli dist/bundle.js",
"package-dev-all": "npm run build && node packageAllPlatforms.mjs dev",
"package-all": "npm run build && node packageAllPlatforms.mjs",
"bump-filen-dependencies": "npm i @filen/sdk@latest @filen/sync@latest @filen/webdav@latest @filen/s3@latest @filen/network-drive@latest"
},
"engines": {
"node": "20"
},
"keywords": [
"filen"
],
"repository": {
"type": "git",
"url": "git+https://github.com/FilenCloudDienste/filen-cli.git"
},
"author": "Filen",
"license": "AGPLv3",
"dependencies": {
"@filen/network-drive": "^0.9.35",
"@filen/s3": "^0.2.45",
"@filen/sdk": "^0.1.181",
"@filen/sync": "^0.1.81",
"@filen/webdav": "^0.2.60",
"arg": "^5.0.2",
"cli-progress": "^3.12.0",
"dedent": "^1.5.3",
"open": "^7.4.2",
"uuid-by-string": "^4.0.0"
},
"devDependencies": {
"@types/cli-progress": "^3.11.6",
"@types/jest": "^29.5.12",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^6.20.0",
"@yao-pkg/pkg": "^5.12.1",
"esbuild": "^0.23.1",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"pe-library": "^1.0.1",
"resedit": "^2.0.3",
"ts-jest": "^29.2.5",
"tsx": "^4.19.2",
"typescript": "^5.5.4"
}
}