-
-
Notifications
You must be signed in to change notification settings - Fork 136
Expand file tree
/
Copy pathpackage.json
More file actions
106 lines (106 loc) · 3.57 KB
/
Copy pathpackage.json
File metadata and controls
106 lines (106 loc) · 3.57 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
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
{
"name": "sleek",
"productName": "sleek",
"version": "2.0.26-rc.1",
"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/sleek/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/ransome1/sleek.git"
},
"license": "MIT",
"author": {
"name": "Robin Ahle",
"email": "sleek@datenkrake.eu"
},
"copyright": "Copyright © 2021 to present Robin Ahle",
"main": "./out/main/index.js",
"type": "module",
"engines": {
"node": ">=25"
},
"scripts": {
"typecheck:node": "tsc --noEmit -p tsconfig.node.json",
"typecheck:web": "tsc --noEmit -p tsconfig.web.json",
"typecheck": "npm run typecheck:node && npm run typecheck:web",
"start": "electron-vite preview",
"dev": "electron-vite dev --watch",
"test": "vitest",
"coverage": "vitest run --coverage",
"lint": "npx eslint ./src",
"format": "npx prettier . --check",
"format:write": "npx prettier . --write",
"build": "npm run peggy && electron-vite build",
"build:unpack": "npm run build && electron-builder --dir",
"build:mas": "npm run build && electron-builder build -m mas --universal --publish never",
"build:masdev": "npm run build && electron-builder build -m mas-dev --publish never",
"postinstall": "install-electron && electron-builder install-app-deps",
"peggy": "npx peggy --format es --dts --output ./src/main/Filters/FilterLang.ts ./src/main/Filters/FilterLang.pegjs && npm run peggy:ts-nocheck",
"peggy:ts-nocheck": "node -e \"const fs=require('fs');const p='src/main/Filters/FilterLang.ts';const c=fs.readFileSync(p,'utf8');if(!c.startsWith('// @ts-nocheck')) fs.writeFileSync(p,'// @ts-nocheck\\n'+c,'utf8')\""
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@emotion/styled": "^11.14.1",
"@mui/icons-material": "^9.0.0",
"@mui/material": "^9.0.0",
"@mui/system": "^9.0.0",
"@mui/x-date-pickers": "^9.0.0",
"chokidar": "^5.0.0",
"electron-store": "^11.0.2",
"i18next": "^26.0.3",
"jstodotxt": "1.0.0-alpha.3",
"luxon": "^3.7.1",
"react": "^19.2.4",
"react-autosuggest": "^10.1.0",
"react-dom": "^19.2.4",
"react-i18next": "^17.0.2",
"react-markdown": "^10.1.0",
"react-string-replace": "^2.0.1",
"remark-gfm": "^4.0.1",
"sugar": "^2.0.6"
},
"devDependencies": {
"@electron-toolkit/tsconfig": "^2.0.0",
"@eslint/js": "^9.39.2",
"@testing-library/dom": "^10.4.1",
"@testing-library/jest-dom": "^6.9.1",
"@testing-library/react": "^16.3.2",
"@types/luxon": "^3.6.2",
"@types/node": "^25.1.0",
"@types/react": "^19.2.13",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react": "^6.0.1",
"@vitest/coverage-v8": "^4.0.18",
"electron": "^43.0.0",
"electron-builder": "^26.0.12",
"electron-vite": "^6.0.0-beta.0",
"eslint": "^9.39.4",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-react": "^7.37.5",
"globals": "^17.3.0",
"jsdom": "^29.0.1",
"peggy": "^5.0.5",
"prettier": "^3.8.1",
"sass": "^1.89.2",
"typescript": "^6.0.2",
"typescript-eslint": "^8.55.0",
"vitest": "^4.0.14"
},
"allowScripts": {
"@parcel/watcher@2.5.6": true,
"esbuild@0.25.12": true,
"electron-winstaller@5.4.0": true,
"fsevents@2.3.3": true
}
}