-
-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.56 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.56 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
84
85
86
87
{
"name": "fedistar",
"version": "1.12.8",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev -p 1420",
"build": "next build",
"tauri": "tauri",
"lint": "eslint src --ext ts,tsx",
"typecheck": "tsc -p . --noEmit",
"test": "NODE_ENV=test jest -u --maxWorkers=3",
"thirdparty": "cd src-tauri && cargo bundle-licenses --format json --output thirdparty.json && cd ../ && license-checker --production --json > thirdparty.json && node scripts/thirdparty.js",
"clean": "rm -rf src-tauri/target"
},
"jest": {
"moduleFileExtensions": ["ts", "js"],
"moduleNameMapper": {
"^src/(.+)": "<rootDir>/src/$1"
},
"preset": "ts-jest/presets/default",
"transform": {
"^.+\\.(ts|tsx)$": [
"ts-jest",
{
"tsconfig": "tsconfig.json"
}
]
},
"testEnvironment": "node"
},
"dependencies": {
"@emoji-mart/react": "^1.1.1",
"@rsuite/icons": "^1.4.0",
"@tauri-apps/api": "2.10.1",
"@tauri-apps/plugin-clipboard-manager": "^2.3.2",
"@tauri-apps/plugin-dialog": "~2.6.0",
"@tauri-apps/plugin-fs": "~2.4.5",
"@tauri-apps/plugin-global-shortcut": "~2.3.1",
"@tauri-apps/plugin-http": "~2.5.7",
"@tauri-apps/plugin-notification": "~2.3.3",
"@tauri-apps/plugin-os": "~2.3.2",
"@tauri-apps/plugin-process": "~2.3.1",
"@tauri-apps/plugin-shell": "~2.3.5",
"dayjs": "^1.11.20",
"emoji-mart": "^5.6.0",
"megalodon": "10.2.4",
"next": "^16.1.6",
"parse-link-header": "^2.0.0",
"react": "19.2.4",
"react-dom": "19.2.4",
"react-icons": "^5.6.0",
"react-intl": "^8.1.3",
"react-virtuoso": "4.18.3",
"rsuite": "5.83.4",
"sanitize-html": "^2.17.1",
"tauri-plugin-window-state-api": "github:tauri-apps/tauri-plugin-window-state#v1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@tauri-apps/cli": "^2.10.1",
"@types/jest": "^30.0.0",
"@types/node": "^24.12.0",
"@types/parse-link-header": "^2.0.3",
"@types/react": "19.2.14",
"@types/react-dom": "19.2.3",
"@typescript-eslint/eslint-plugin": "^8.55.0",
"@typescript-eslint/parser": "^8.55.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.3.0",
"jest": "^30.2.0",
"jsdom": "^26.1.0",
"sass": "^1.98.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3"
},
"browser": {
"net": false,
"dns": false,
"tls": false,
"zlib": false,
"bufferutil": false,
"utf-8-validate": false
}
}