-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
144 lines (144 loc) · 4.25 KB
/
Copy pathpackage.json
File metadata and controls
144 lines (144 loc) · 4.25 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
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
{
"name": "stdout",
"private": true,
"version": "1.3.0",
"description": "Your standard output for dev tools—format, convert, encode, generate. All run locally without server dependency.",
"type": "module",
"repository": {
"type": "git",
"url": "https://github.com/cminhho/stdout.git"
},
"bugs": {
"url": "https://github.com/cminhho/stdout/issues"
},
"homepage": "https://github.com/cminhho/stdout#readme",
"keywords": [
"productivity",
"converter",
"formatter",
"tools",
"generator",
"development-tools",
"dev-tools",
"json-formatter",
"developer-utilities"
],
"license": "MIT",
"author": "cminhho (https://github.com/cminhho)",
"main": "electron/main/index.cjs",
"scripts": {
"dev": "vite",
"build": "vite build",
"build:dev": "vite build --mode development",
"build:analyze": "cross-env ANALYZE=1 vite build",
"lint": "eslint .",
"preview": "vite preview",
"deploy": "vite build && firebase deploy",
"electron:dev": "concurrently -k \"vite\" \"wait-on http://localhost:8080 && cross-env NODE_ENV=development electron .\"",
"electron:build": "cross-env ELECTRON_BUILD=1 vite build && electron-builder",
"electron:build:mac": "cross-env ELECTRON_BUILD=1 vite build && electron-builder --mac --arm64 --x64 --publish never",
"electron:build:mac:ci": "cross-env ELECTRON_BUILD=1 vite build && electron-builder --mac zip --arm64 --x64",
"electron:build:win": "cross-env ELECTRON_BUILD=1 vite build && electron-builder --win",
"electron:build:linux": "cross-env ELECTRON_BUILD=1 vite build && electron-builder --linux",
"electron:build:all": "cross-env ELECTRON_BUILD=1 vite build && electron-builder -mwl",
"release": "node scripts/release.mjs",
"release:patch": "node scripts/release.mjs patch",
"release:minor": "node scripts/release.mjs minor",
"release:major": "node scripts/release.mjs major"
},
"dependencies": {
"@radix-ui/react-checkbox": "^1.3.2",
"@radix-ui/react-dialog": "^1.1.4",
"@radix-ui/react-label": "^2.1.7",
"@radix-ui/react-popover": "^1.1.15",
"@radix-ui/react-select": "^2.2.5",
"@radix-ui/react-slot": "^1.2.3",
"@radix-ui/react-tooltip": "^1.2.7",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"electron-updater": "^6.3.9",
"lucide-react": "^0.462.0",
"next-themes": "^0.4.6",
"prettier": "^3.8.1",
"qrcode": "^1.5.4",
"react": "^19.2.4",
"react-dom": "^19.2.4",
"react-hotkeys-hook": "^5.2.0",
"react-json-view-lite": "^2.5.0",
"react-markdown": "^10.1.0",
"react-router-dom": "^7.13.1",
"remark-gfm": "^4.0.1",
"sonner": "^1.7.4",
"tailwind-merge": "^2.6.0",
"tailwindcss-animate": "^1.0.7",
"terser": "^5.46.0",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@types/node": "^22.16.5",
"@types/qrcode": "^1.5.6",
"@types/react": "^19.2.3",
"@types/react-dom": "^19.2.3",
"@vitejs/plugin-react-swc": "^3.11.0",
"autoprefixer": "^10.4.21",
"concurrently": "^9.1.0",
"cross-env": "^7.0.3",
"electron": "^33.2.0",
"electron-builder": "^25.1.8",
"eslint": "^9.32.0",
"eslint-plugin-react-hooks": "^7.0.1",
"eslint-plugin-react-refresh": "^0.4.20",
"globals": "^15.15.0",
"postcss": "^8.5.6",
"rollup-plugin-visualizer": "^6.0.5",
"tailwindcss": "^3.4.17",
"typescript": "^6.0.2",
"typescript-eslint": "^8.56.1",
"vite": "^5.4.19",
"vite-plugin-pwa": "^1.2.0",
"wait-on": "^8.0.1"
},
"build": {
"appId": "com.stdout.tools",
"productName": "stdout",
"directories": {
"output": "release",
"buildResources": "build"
},
"mac": {
"category": "public.app-category.developer-tools",
"icon": "build/icon.icns",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": [
"nsis",
"zip"
]
},
"linux": {
"target": [
"AppImage",
"deb"
]
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"files": [
"dist/**/*",
"electron/**/*"
],
"publish": {
"provider": "github",
"owner": "cminhho",
"repo": "stdout"
},
"asar": true
}
}