-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.16 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 2.16 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
{
"name": "chart-viewer",
"version": "3.5.0",
"private": true,
"engines": {
"node": ">=22.0.0"
},
"description": "Aviation chart viewer application for viewing PDF approach charts",
"author": {
"name": "Justin",
"email": "epa6643@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/6639835/chart-viewer.git"
},
"homepage": "https://github.com/6639835/chart-viewer#readme",
"bugs": {
"url": "https://github.com/6639835/chart-viewer/issues"
},
"scripts": {
"dev": "next dev",
"build": "next build",
"lint": "eslint .",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"format:check": "prettier --check \"**/*.{js,jsx,ts,tsx,json,css,md}\"",
"tauri:dev": "tauri dev",
"tauri:build": "tauri build",
"tauri:build:mac": "tauri build --bundles dmg,app",
"tauri:build:win": "tauri build --bundles nsis",
"tauri:build:linux": "tauri build --bundles appimage,deb",
"generate-icons": "node scripts/generate-icons.js",
"release": "bash scripts/release.sh"
},
"dependencies": {
"@tauri-apps/api": "^2.10.1",
"@tauri-apps/plugin-dialog": "^2.7.0",
"@tauri-apps/plugin-opener": "^2.5.3",
"@tauri-apps/plugin-process": "^2.3.1",
"@tauri-apps/plugin-updater": "^2.10.1",
"lucide-react": "^0.555.0",
"next": "^16.0.5",
"next-themes": "^0.4.6",
"papaparse": "^5.4.1",
"pdfjs-dist": "5.4.296",
"react": "^19.2.0",
"react-dom": "^19.2.0"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.1",
"@eslint/js": "^9.28.0",
"@next/eslint-plugin-next": "^16.0.5",
"@tauri-apps/cli": "^2.10.1",
"@types/node": "^22.15.0",
"@types/papaparse": "^5.5.0",
"@types/react": "^19.2.0",
"@types/react-dom": "^19.2.0",
"autoprefixer": "^10.4.20",
"eslint": "^9.28.0",
"eslint-config-next": "^16.0.0",
"eslint-plugin-react": "^7.37.5",
"eslint-plugin-react-hooks": "^7.0.1",
"globals": "^16.5.0",
"png-to-ico": "^3.0.1",
"postcss": "^8.5.0",
"prettier": "^3.6.2",
"sharp": "^0.34.5",
"tailwindcss": "^3.4.17",
"typescript": "^5.8.0",
"typescript-eslint": "^8.48.0"
}
}