-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
102 lines (102 loc) · 2.93 KB
/
Copy pathpackage.json
File metadata and controls
102 lines (102 loc) · 2.93 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
{
"name": "wrangle",
"version": "0.5.0-alpha",
"description": "Wrangle - A modern markdown editor with Monaco editor, built with Electron and React",
"main": "./out/main/index.js",
"bin": {
"wrangle": "./bin/cli.js"
},
"files": [
"out/",
"bin/"
],
"author": {
"name": "Cyrus Attoun",
"email": "cyrus.attoun@gmail.com"
},
"license": "MIT",
"scripts": {
"start": "electron-vite dev",
"dev:claude": "node -e \"delete process.env.ELECTRON_RUN_AS_NODE; require('child_process').spawn('npx', ['electron-vite', 'dev'], {stdio: 'inherit', shell: true, env: process.env})\"",
"build": "electron-vite build",
"postbuild": "node -e \"const fs=require('fs');const p=require('path');fs.mkdirSync(p.join('out','assets'),{recursive:true});fs.copyFileSync(p.join('src','assets','W.png'),p.join('out','assets','w.png'));\"",
"prepublishOnly": "npm run build",
"preview": "electron-vite preview",
"dist": "npm run build && electron-builder",
"dist:linux": "npm run build && electron-builder --linux",
"dist:win": "npm run build && electron-builder --win",
"test": "playwright test",
"test:headed": "playwright test --headed",
"test:debug": "playwright test --debug"
},
"dependencies": {
"@dnd-kit/core": "^6.3.1",
"@dnd-kit/sortable": "^10.0.0",
"@dnd-kit/utilities": "^3.2.2",
"@monaco-editor/react": "^4.6.0",
"@reduxjs/toolkit": "^2.0.1",
"allotment": "^1.20.0",
"electron-store": "^8.2.0",
"electron-updater": "^6.1.7",
"gray-matter": "^4.0.3",
"highlight.js": "^11.11.1",
"katex": "^0.16.9",
"lucide-react": "^0.562.0",
"marked": "^12.0.0",
"marked-gfm-heading-id": "^3.1.3",
"marked-highlight": "^2.1.0",
"mermaid": "^10.7.0",
"monaco-editor": "^0.45.0",
"monaco-vim": "^0.4.4",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"react-hotkeys-hook": "^4.4.1",
"react-markdown": "^10.1.0",
"react-redux": "^9.0.4",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"rehype-raw": "^7.0.0",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"unist-util-visit": "^5.0.0"
},
"devDependencies": {
"@playwright/test": "^1.40.0",
"@types/node": "^20.10.6",
"@types/react": "^18.2.45",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"electron": "^28.3.3",
"electron-builder": "^24.13.3",
"electron-vite": "^2.0.0",
"typescript": "^5.3.3",
"vite": "^5.0.10"
},
"build": {
"appId": "com.wrangle.app",
"productName": "Wrangle",
"icon": "src/assets/W.png",
"directories": {
"output": "dist"
},
"files": [
"out/**/*"
],
"win": {
"target": [
"nsis"
],
"icon": "src/assets/W.png"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
},
"linux": {
"target": [
"AppImage"
],
"category": "Office"
}
}
}