-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.98 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.98 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
{
"name": "smart-code-prompts",
"version": "0.1.3",
"description": "Smart Code Prompts",
"main": "electron-main.js",
"scripts": {
"build": "tailwindcss -i ./css/index.css -o ./dist/output.css",
"watch": "tailwindcss -i ./css/index.css -o ./dist/output.css --watch",
"dev:set-name": "node set-app-name.js",
"start": "npm run build && npm run dev:set-name && electron .",
"postinstall": "electron-rebuild",
"rebuild": "electron-rebuild -f -w better-sqlite3"
},
"author": "Ekim Emre Yardimli",
"license": "ISC",
"dependencies": {
"better-sqlite3": "^12.2.0",
"bootstrap-icons": "^1.11.3",
"monaco-editor": "^0.52.2",
"yaml": "^2.8.0"
},
"devDependencies": {
"daisyui": "^4.10.2",
"electron": "^37.2.0",
"electron-rebuild": "^3.2.9",
"plist": "^3.1.0",
"tailwindcss": "^3.4.3"
},
"build": {
"appId": "com.elo.smartcodeprompts",
"productName": "Smart Code Prompts",
"copyright": "Copyright © 2025 Ekim Emre Yardimli",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"js/**/*",
"assets/**/*",
"css/**/*",
"electron-main.js",
"electron-preload.js",
"index.html",
"llm-prompt-builder.jpg",
"modal-about.html",
"modal-alert.html",
"modal-analysis.html",
"modal-api-key.html",
"modal-confirm.html",
"modal-diff.html",
"modal-log.html",
"modal-progress.html",
"modal-prompt.html",
"modal-qa.html",
"modal-reanalysis.html",
"modal-search.html",
"modal-tab-switcher.html",
"node-config.js",
"node-files.js",
"node-llm.js",
"node-llm-api.js",
"node-llm-data.js",
"node-llm-tasks.js",
"node-projects.js",
"README.md",
"set-app-name.js",
"tailwind.config.js"
],
"win": {
"target": "portable",
"icon": "assets/icon.png"
},
"mac": {
"target": "zip",
"icon": "assets/icon.png"
}
}
}