-
Notifications
You must be signed in to change notification settings - Fork 36
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
57 lines (57 loc) · 2.18 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": "fileterm",
"version": "2.1.8",
"private": true,
"license": "MIT",
"description": "Modern remote workspace for SSH, SFTP, and FTP.",
"workspaces": [
"apps/*",
"packages/*"
],
"scripts": {
"dev": "npm run dev:tauri",
"dev:tauri": "node ./scripts/workspace-run.mjs dev apps/tauri",
"lint": "eslint apps/tauri packages/core packages/shared packages/storage --max-warnings=0",
"lint:fix": "eslint apps/tauri packages/core packages/shared packages/storage --fix --max-warnings=0",
"format": "prettier --write .",
"format:check": "prettier --check .",
"sync:version": "node ./scripts/sync-version-from-root.mjs",
"build:packages": "node ./scripts/workspace-run.mjs build packages/core packages/shared packages/storage",
"build": "npm run build:tauri",
"build:tauri": "node ./scripts/workspace-run.mjs build apps/tauri",
"typecheck": "npm run build:packages && node ./scripts/workspace-run.mjs typecheck packages/core packages/shared packages/storage apps/tauri",
"test": "npm run test:tauri",
"test:tauri": "node ./scripts/workspace-run.mjs test apps/tauri",
"prepare": "husky",
"version:bump": "node ./scripts/bump-version.mjs",
"release:mac": "node ./scripts/workspace-run.mjs release:mac apps/tauri",
"release:win": "node ./scripts/workspace-run.mjs release:win apps/tauri",
"release:linux": "node ./scripts/workspace-run.mjs release:linux apps/tauri",
"postinstall": "node ./vendor/cpu-features-shim/apply-shim.mjs"
},
"engines": {
"node": ">=22.12.0"
},
"lint-staged": {
"*.{js,cjs,mjs,ts,tsx,cts,mts}": [
"prettier --write",
"eslint --fix --max-warnings=0"
],
"*.{json,md,css,yml,yaml}": "prettier --write"
},
"dependencies": {},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@eslint-react/eslint-plugin": "^5.18.0",
"@typescript-eslint/eslint-plugin": "^8.63.0",
"@typescript-eslint/parser": "^8.63.0",
"eslint": "^10.8.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"eslint-plugin-react-hooks": "^7.1.1",
"globals": "^16.5.0",
"husky": "^9.1.7",
"lint-staged": "^16.4.0",
"prettier": "^3.9.5"
}
}