-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
66 lines (66 loc) · 1.78 KB
/
package.json
File metadata and controls
66 lines (66 loc) · 1.78 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
{
"name": "scriptographer",
"version": "1.0.0",
"description": "PowerShell script deployment tool for Windows domain admins",
"main": "./out/main/index.js",
"author": "LoserLabs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/giftedloser/Scriptographer"
},
"homepage": "https://github.com/giftedloser/Scriptographer#readme",
"bugs": {
"url": "https://github.com/giftedloser/Scriptographer/issues"
},
"scripts": {
"dev": "electron-vite dev",
"build": "electron-vite build",
"preview": "electron-vite preview",
"pack": "electron-builder --win --x64",
"postinstall": "electron-builder install-app-deps"
},
"dependencies": {
"@fontsource/dancing-script": "^5.2.8",
"@fontsource/jetbrains-mono": "^5.2.8",
"@monaco-editor/react": "^4.6.0",
"@radix-ui/react-dialog": "^1.0.5",
"@radix-ui/react-dropdown-menu": "^2.0.6",
"@radix-ui/react-radio-group": "^1.1.3",
"lucide-react": "^0.344.0",
"node-powershell": "^5.0.1",
"sql.js": "^1.10.3"
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"@vitejs/plugin-react": "^4.2.1",
"autoprefixer": "^10.4.17",
"electron": "^28.2.0",
"electron-builder": "^24.9.1",
"electron-vite": "^2.0.0",
"postcss": "^8.4.33",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"tailwindcss": "^3.4.1",
"typescript": "^5.3.3",
"vite": "^5.0.12"
},
"build": {
"appId": "com.scriptographer.app",
"productName": "Scriptographer",
"win": {
"target": "nsis",
"icon": "resources/icon.ico"
},
"files": [
"out/**/*",
"database/**/*",
"resources/**/*"
],
"directories": {
"output": "dist"
}
}
}