-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.41 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.41 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
{
"name": "command-tree",
"version": "1.1.2",
"description": "Command Tree - a tree-style quick launchpad",
"author": "kotoar",
"type": "module",
"main": "dist/main.cjs",
"scripts": {
"build": "webpack",
"start": "electron dist/main.cjs",
"dev": "npx tsc & npm run build & npm run start",
"export": "electron-builder",
"rebuild": "npx electron-rebuild"
},
"build": {
"files": [
"dist/**/*",
"package.json"
],
"extraResources": [
"src/static/**"
],
"appId": "com.kotoar.commandtree",
"productName": "Command Tree",
"directories": {
"output": "export"
},
"win": {
"target": [
"nsis",
"portable"
],
"icon": "src/static/icon-win.ico"
}
},
"dependencies": {
"@chakra-ui/react": "^3.20.0",
"@emotion/react": "^11.14.0",
"better-sqlite3": "^11.10.0",
"copy-webpack-plugin": "^13.0.0",
"next-themes": "^0.4.6",
"react": "^18.0.0",
"react-dom": "^18.0.0",
"react-icons": "^5.5.0",
"react-router-dom": "^7.1.5",
"valtio": "^2.1.5"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.13",
"@types/react": "^18.0.0",
"@types/react-dom": "^18.0.0",
"electron": "^28.0.0",
"electron-builder": "^25.1.8",
"html-webpack-plugin": "^5.5.0",
"ts-loader": "^9.0.0",
"typescript": "^5.0.0",
"webpack": "^5.0.0",
"webpack-cli": "^5.0.0"
}
}