forked from BastianGanze/weebsync
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.02 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.02 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
{
"name": "weebsync",
"version": "0.8.0",
"description": "A small tool to automatically sync files from an ftp server.",
"license": "MIT",
"private": true,
"type": "module",
"bin": "build/index.js",
"engines": {
"node": ">=22.0.0"
},
"scripts": {
"client:build": "cd client && yarn build",
"client:dev": "cd client && yarn dev",
"server:dev": "cd server && yarn dev",
"server:build": "cd server && yarn build",
"build": "yarn run client:build && yarn run server:build",
"start": "node build/index.js",
"lint": "eslint . --fix",
"format": "eslint . --fix",
"format:check": "eslint .",
"build:sea": "node build-sea.js",
"publishVersion": "PACKAGE_VERSION=$(cat package.json | grep \\\"version\\\" | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]') && git tag v$PACKAGE_VERSION && git push --tags"
},
"author": "Bastian Ganze",
"icon": "client/static/icon.png",
"workspaces": {
"packages": [
"client",
"server"
]
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^8.15.0",
"@typescript-eslint/parser": "^8.15.0",
"@yao-pkg/pkg": "^6.6.0",
"eslint": "^9.34.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"postject": "^1.0.0-alpha.6",
"prettier": "^3.4.2",
"rcedit": "^4.0.1",
"typescript": "^5.9.2"
},
"dependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@rollup/plugin-terser": "^0.4.4",
"postcss": "^8.4.31",
"rollup": "^4.28.1",
"vue": "^3.5.19"
},
"resolutions": {
"ws": "^8.17.1",
"linkifyjs": "^4.3.2",
"postcss": "^8.4.31",
"brace-expansion": "^2.0.2",
"esbuild": "^0.25.0"
},
"pkg": {
"assets": [
"build/client/**/*"
],
"outputPath": "dist",
"targets": [
"node22-linux-x64",
"node22-linux-arm64",
"node22-win-x64",
"node22-macos-x64",
"node22-macos-arm64"
]
}
}