-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.99 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.99 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
{
"name": "msg-reader",
"version": "1.0.1",
"type": "module",
"main": "src/js/main.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"build-gh-pages": "npm run build && rm -rf .gh-pages && mkdir -p .gh-pages && cp -r dist/* .gh-pages/ && sed -i '' \"s/__VERSION__/$(git describe --tags --always 2>/dev/null || echo 'dev')/g\" .gh-pages/index.html",
"deploy": "npm run build-gh-pages && gh-pages -d .gh-pages",
"tauri": "tauri",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:debug": "tauri build --debug",
"tauri:icons": "tauri icon app-icon.svg -o src-tauri/icons",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"lint": "eslint src/js/**/*.js",
"lint:fix": "eslint src/js/**/*.js --fix",
"format": "prettier --write \"src/js/**/*.js\"",
"format:check": "prettier --check \"src/js/**/*.js\""
},
"keywords": [],
"author": "",
"license": "ISC",
"engines": {
"node": ">=20.19.0"
},
"description": "A web-based MSG and EML email file reader",
"dependencies": {
"@kenjiuno/decompressrtf": "^0.1.4",
"@kenjiuno/msgreader": "^1.28.0",
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.6.0",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.0",
"buffer": "^6.0.3",
"dompurify": "^3.3.3",
"iconv-lite": "^0.7.2",
"md5": "^2.3.0",
"rtf-stream-parser": "^3.8.1"
},
"devDependencies": {
"@babel/core": "^7.29.0",
"@babel/preset-env": "^7.29.0",
"@tailwindcss/vite": "^4.2.1",
"@tauri-apps/cli": "^2.10.1",
"autoprefixer": "^10.4.27",
"babel-jest": "^30.3.0",
"eslint": "^9.39.4",
"gh-pages": "^6.3.0",
"globals": "^17.4.0",
"jest": "^30.3.0",
"jest-environment-jsdom": "^30.3.0",
"postcss": "^8.5.8",
"prettier": "^3.8.1",
"tailwindcss": "^4.2.1",
"vite": "^7.3.1",
"vite-plugin-node-polyfills": "^0.25.0"
}
}