-
-
Notifications
You must be signed in to change notification settings - Fork 119
/
Copy pathpackage.json
89 lines (89 loc) · 2.95 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
{
"name": "sleek",
"productName": "sleek",
"version": "2.0.16",
"description": "todo.txt manager for Linux, Windows and MacOS, free and open-source (FOSS)",
"synopsis": "todo.txt manager for Linux, Windows and MacOS, free and open-source (FOSS)",
"keywords": [
"todo.txt",
"todo",
"productivity",
"tasks"
],
"category": "ProjectManagement",
"homepage": "https://github.com/ransome1/",
"bugs": {
"url": "https://github.com/ransome1/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ransome1/sleek.git"
},
"license": "MIT",
"author": {
"name": "ransome1",
"email": "[email protected]"
},
"copyright": "Copyright © 2021 to present ransome1",
"main": "./out/main/index.js",
"type": "module",
"scripts": {
"format": "prettier --write .",
"lint": "eslint ./src/ --ext .js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix",
"typecheck:node": "tsc --noEmit -p tsconfig.node.json --composite false",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json --composite false",
"typecheck": "yarn typecheck:node && yarn typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev",
"build": "yarn peggy && electron-vite build",
"postinstall": "electron-builder install-app-deps",
"build:unpack": "yarn build && electron-builder --dir",
"mas": "yarn build && electron-builder build -m mas --universal --publish never",
"masdev": "yarn build && electron-builder build -m mas-dev --publish never",
"peggy": "peggy --format es --dts --output ./src/main/modules/Filters/FilterLang.ts ./src/main/modules/Filters/FilterLang.pegjs"
},
"dependencies": {
"@emotion/react": "^11.13.5",
"@emotion/styled": "^11.13.5",
"@mui/icons-material": "^6.4.0",
"@mui/material": "^6.4.0",
"@mui/system": "^6.4.0",
"@mui/x-date-pickers": "^7.24.0",
"chokidar": "^4.0.3",
"dayjs": "^1.11.13",
"electron-store": "^10.0.0",
"i18next": "^24.2.0",
"jstodotxt": "^1.0.0-alpha.0",
"react": "^19.0.0",
"react-autosuggest": "^10.1.0",
"react-dom": "^19.0.0",
"react-i18next": "^15.3.0",
"react-markdown": "^9.0.1",
"react-string-replace": "^1.1.1",
"remark-gfm": "^4.0.0",
"sugar": "^2.0.6"
},
"devDependencies": {
"@electron-toolkit/eslint-config-prettier": "^2.0.0",
"@electron-toolkit/eslint-config-ts": "^2.0.0",
"@electron-toolkit/tsconfig": "^1.0.1",
"@types/node": "^22.10.7",
"@types/react": "^19.0.7",
"@types/react-dom": "^19.0.3",
"@typescript-eslint/parser": "^8.20.0",
"@vitejs/plugin-react": "^4.3.1",
"electron": "^34.0.0",
"electron-builder": "^25.1.8",
"electron-vite": "^2.3.0",
"eslint": "^8.57.0",
"eslint-plugin-react": "^7.34.3",
"material-ui-popup-state": "^5.3.3",
"peggy": "^4.2.0",
"prettier": "^3.3.2",
"react": "^19.0.0",
"react-dom": "^19.0.0",
"sass": "^1.83.4",
"typescript": "^5.5.2",
"vite": "^6.0.7"
}
}