-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
98 lines (98 loc) · 2.55 KB
/
Copy pathpackage.json
File metadata and controls
98 lines (98 loc) · 2.55 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
{
"name": "pointer",
"version": "1.0.0",
"description": "A modern code editor powered by your local LLM",
"main": "electron/main.js",
"scripts": {
"env": "npx dotenv-wizard",
"start": "vite",
"build": "tsc && vite build",
"serve": "vite preview",
"dev:server": "vite",
"dev:electron": "electron .",
"dev": "node start-pointer.js",
"electron:dev": "concurrently \"yarn start\" \"wait-on http://localhost:3000 && electron .\"",
"electron:start": "electron .",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@emotion/react": "^11.14.0",
"@types/diff": "^7.0.1",
"@types/react-syntax-highlighter": "^15.5.13",
"@types/uuid": "^10.0.0",
"@xterm/addon-fit": "^0.10.0",
"@xterm/addon-web-links": "^0.11.0",
"@xterm/xterm": "^5.5.0",
"chalk": "4",
"diff": "^7.0.0",
"discord-rpc": "^4.0.1",
"electron-updater": "^6.6.2",
"monaco-editor": "^0.45.0",
"openai": "^4.81.0",
"react": "^18.2.0",
"react-colorful": "^5.6.1",
"react-dom": "^18.2.0",
"react-markdown": "^9.0.3",
"react-syntax-highlighter": "^15.6.1",
"rehype-highlight": "^7.0.2",
"rehype-katex": "^7.0.1",
"remark-emoji": "^5.0.1",
"remark-gfm": "^4.0.1",
"remark-math": "^6.0.0",
"remark-toc": "^9.0.0",
"simple-git": "^3.27.0",
"tcp-port-used": "^1.0.2",
"tinycolor2": "^1.6.0",
"uuid": "^11.1.0",
"windows-debugger": "^1.1.6",
"zustand": "^5.0.3"
},
"devDependencies": {
"@types/katex": "^0.16.7",
"@types/react": "^18.3.18",
"@types/react-dom": "^18.3.5",
"@types/tinycolor2": "^1.4.6",
"@vitejs/plugin-react": "^4.2.0",
"concurrently": "^8.2.2",
"dmg-builder": "^26.8.1",
"dotenv-wizard": "^1.0.4",
"electron": "^28.1.0",
"electron-builder": "^24.9.1",
"electron-builder-squirrel-windows": "^26.8.1",
"terser": "^5.46.1",
"typescript": "^5.0.0",
"vite": "^5.4.0",
"wait-on": "^7.2.0"
},
"proxy": "http://localhost:1234",
"build": {
"appId": "com.pointer",
"mac": {
"category": "public.app-category.developer-tools",
"icon": "electron/logo.png",
"target": [
"dmg",
"zip"
]
},
"win": {
"target": "nsis",
"icon": "electron/logo3.png"
},
"linux": {
"target": "AppImage",
"icon": "electron/logo3.png"
},
"files": [
"dist/**/*",
"electron/**/*"
],
"publish": [
{
"provider": "github",
"owner": "PointerIDE",
"repo": "Pointer"
}
]
}
}