forked from kleneway/pastemax
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
113 lines (113 loc) · 3.22 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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "pastemax",
"version": "1.0.0",
"main": "main.js",
"scripts": {
"start": "electron .",
"dev": "vite",
"dev:electron": "node dev.js",
"build": "vite build",
"build-electron": "node build.js",
"verify-build": "node scripts/verify-build.js",
"test-build": "node scripts/test-local-build.js",
"test-build:mac": "node scripts/test-local-build.js mac",
"test-build:win": "node scripts/test-local-build.js win",
"test-build:linux": "node scripts/test-local-build.js linux",
"debug-gh-release": "git tag debug-v$(date +'%Y%m%d%H%M%S') && git push origin --tags",
"package": "vite build && electron-builder --publish=never",
"package:mac": "vite build && electron-builder --mac --publish=never",
"package:win": "vite build && electron-builder --win --publish=never",
"package:linux": "vite build && electron-builder --linux --publish=never",
"package:all": "vite build && electron-builder -mwl --publish=never",
"release": "vite build && electron-builder --publish=onTagOrDraft",
"lint": "eslint . --ext ts,tsx --report-unused-disable-directives",
"lint:strict": "eslint . --ext ts,tsx --report-unused-disable-directives --max-warnings 0",
"preview": "vite preview"
},
"keywords": [
"clipboard",
"code",
"developer-tools",
"electron",
"file-viewer"
],
"author": {
"name": "kleneway",
"email": "[email protected]"
},
"license": "MIT",
"description": "A modern file viewer application for developers to easily navigate, search, and copy code from repositories.",
"build": {
"appId": "com.kleneway.pastemax",
"productName": "PasteMax",
"directories": {
"output": "release-builds"
},
"files": [
"dist/**/*",
"main.js",
"preload.js",
"excluded-files.js",
"node_modules/**/*"
],
"mac": {
"category": "public.app-category.developer-tools",
"icon": "public/favicon.icns",
"target": [
"dmg",
"zip"
],
"hardenedRuntime": false
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "public/favicon.ico"
},
"linux": {
"target": [
"AppImage",
"deb",
"rpm"
],
"category": "Development",
"icon": "public/favicon.png"
},
"asarUnpack": [
"node_modules/ignore/**",
"node_modules/tiktoken/**",
"node_modules/gpt-3-encoder/**"
],
"asar": true,
"afterSign": "scripts/notarize.js",
"publish": [
"github"
]
},
"devDependencies": {
"@electron/notarize": "^2.5.0",
"@types/node": "^20.10.5",
"@types/react": "^18.2.43",
"@types/react-dom": "^18.2.17",
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"@vitejs/plugin-react": "^4.2.1",
"electron": "^34.3.0",
"electron-builder": "^24.13.3",
"eslint": "^8.55.0",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-react-refresh": "^0.4.5",
"typescript": "^5.3.3",
"vite": "^5.0.8"
},
"dependencies": {
"gpt-3-encoder": "^1.1.4",
"ignore": "^7.0.3",
"lucide-react": "^0.477.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tiktoken": "^1.0.20"
}
}