-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
81 lines (81 loc) · 2.4 KB
/
package.json
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
{
"name": "fedistar",
"version": "1.10.0",
"scripts": {
"preinstall": "npx only-allow pnpm",
"dev": "next dev -p 1420",
"build": "next build",
"tauri": "tauri",
"snap": "tauri-snap-packager",
"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.2.0",
"@tauri-apps/api": "2.1.1",
"@tauri-apps/plugin-clipboard-manager": "^2.2.0",
"@tauri-apps/plugin-dialog": "~2",
"@tauri-apps/plugin-fs": "~2.2.0",
"@tauri-apps/plugin-global-shortcut": "~2",
"@tauri-apps/plugin-http": "~2",
"@tauri-apps/plugin-notification": "~2",
"@tauri-apps/plugin-os": "~2",
"@tauri-apps/plugin-process": "~2",
"@tauri-apps/plugin-shell": "~2",
"dayjs": "^1.11.13",
"emoji-mart": "^5.6.0",
"megalodon": "10.0.7",
"next": "^14.2.21",
"parse-link-header": "^2.0.0",
"react": "18.3.1",
"react-dom": "18.3.1",
"react-icons": "^5.3.0",
"react-intl": "^7.0.4",
"react-virtuoso": "4.12.3",
"rsuite": "5.68.0",
"sanitize-html": "^2.13.1",
"tauri-plugin-window-state-api": "github:tauri-apps/tauri-plugin-window-state#v1"
},
"devDependencies": {
"@h3poteto/tauri-snap-packager": "0.2.1",
"@tauri-apps/cli": "^2.1.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/parse-link-header": "^2.0.3",
"@types/react": "18.3.12",
"@types/react-dom": "18.3.1",
"@typescript-eslint/eslint-plugin": "^8.17.0",
"@typescript-eslint/parser": "^8.17.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-react": "^7.37.2",
"jest": "^29.7.0",
"jsdom": "^25.0.1",
"sass": "^1.82.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.2"
}
}