-
-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
148 lines (148 loc) · 3.84 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
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
{
"name": "pocket-sync",
"private": true,
"version": "5.2.0",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"tauri": "tauri",
"lint-i18n": "eslint --fix --ext .json --format node_modules/eslint-plugin-i18n-json/formatter.js src/i18n",
"dead-code": "npx ts-prune"
},
"dependencies": {
"@neil-morrison44/gameboy-emulator": "^1.3.0",
"@prantlf/jsonlint": "11.7.0",
"@react-three/drei": "^9.114.0",
"@react-three/fiber": "^8.17.9",
"@react-three/postprocessing": "^2.16.3",
"@tauri-apps/api": "^2.0.0-rc.0",
"@tauri-apps/plugin-clipboard-manager": "^2.0.0",
"@tauri-apps/plugin-dialog": "^2.0.0",
"@tauri-apps/plugin-fs": "^2.0.0",
"@tauri-apps/plugin-http": "^2.0.0",
"@tauri-apps/plugin-log": "^2.0.0",
"@tauri-apps/plugin-os": "^2.0.0",
"@tauri-apps/plugin-process": "^2.0.0",
"@tauri-apps/plugin-shell": "^2.0.0",
"@tauri-apps/plugin-updater": "^2.0.0",
"@types/three": "0.169.0",
"@zip.js/zip.js": "^2.7.52",
"d3-scale": "^4.0.2",
"date-fns": "^4.1.0",
"fast-fuzzy": "^1.12.0",
"html-react-parser": "^5.1.18",
"i18next": "^23.15.2",
"i18next-icu": "^2.3.0",
"mdast-util-gfm-autolink-literal": "2.0.0",
"postprocessing": "^6.36.3",
"r3f-perf": "^7.2.2",
"react": "^18.3.1",
"react-dom": "^18.3.1",
"react-i18next": "^15.0.2",
"react-markdown": "^9.0.1",
"recoil": "^0.7.7",
"remark-gfm": "^4.0.0",
"simplex-noise": "^4.0.3",
"three": "0.169.0"
},
"devDependencies": {
"@octokit/rest": "^21.0.2",
"@tauri-apps/cli": "^2.0.1",
"@types/d3-scale": "^4.0.8",
"@types/jsonlint": "^1.6.3",
"@types/node": "^22.7.4",
"@types/react": "^18.3.11",
"@types/react-dom": "^18.3.0",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"@vitejs/plugin-react": "^4.3.2",
"eslint": "^9.12.0",
"eslint-plugin-i18n-json": "^4.0.0",
"eslint-plugin-react": "^7.37.1",
"eslint-plugin-react-hooks": "5.1.0-rc-eb3ad065-20240822",
"eslint-plugin-unused-imports": "^4.1.4",
"postcss-nesting": "^13.0.0",
"stylelint": "^16.9.0",
"stylelint-config-standard": "^36.0.1",
"typescript": "^5.6.2",
"vite": "^5.4.8",
"vite-plugin-i18next-loader": "^2.0.13"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 2,
"semi": false,
"singleQuote": false
},
"eslintConfig": {
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended",
"plugin:react/recommended",
"plugin:react/jsx-runtime",
"plugin:react-hooks/recommended",
"plugin:i18n-json/recommended"
],
"parser": "@typescript-eslint/parser",
"parserOptions": {
"ecmaFeatures": {
"jsx": true
}
},
"plugins": [
"@typescript-eslint",
"react",
"unused-imports",
"i18n-json"
],
"rules": {
"react/jsx-no-literals": [
"error",
{
"noStrings": true,
"ignoreProps": true,
"allowedStrings": [
":",
"_",
"X",
"-"
]
}
],
"i18n-json/valid-message-syntax": [
2,
{
"syntax": "icu"
}
],
"react/no-unknown-property": [
"off",
{
"ignore": [
"JSX"
]
}
],
"@typescript-eslint/ban-ts-comment": "warn",
"unused-imports/no-unused-imports": "error",
"@typescript-eslint/no-unused-vars": [
"warn",
{
"argsIgnorePattern": "^_",
"varsIgnorePattern": "^_"
}
]
},
"root": true,
"settings": {
"react": {
"version": "detect"
}
}
},
"stylelint": {
"extends": "stylelint-config-standard"
}
}