-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 2.12 KB
/
package.json
File metadata and controls
72 lines (72 loc) · 2.12 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
{
"name": "shadowgraph",
"version": "1.0.0",
"description": "ShadowGraph \u2014 Obsidian + Miro style knowledge visualization app",
"main": "dist/main/main.js",
"scripts": {
"build:main": "npx tsc -p tsconfig.main.json",
"build:renderer": "npx webpack --config webpack.config.js --mode production",
"build": "npm run build:main && npm run build:renderer",
"start": "npm run build && electron .",
"dev": "concurrently \"tsc -p tsconfig.main.json -w\" \"webpack --config webpack.config.js --mode development --watch\" \"wait-on dist/renderer/index.html && electron .\"",
"pack": "npm run build && electron-builder --win portable",
"dist": "npm run build && electron-builder --win nsis"
},
"build": {
"appId": "com.shadowgraph.app",
"productName": "ShadowGraph",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"assets/**/*"
],
"win": {
"target": [
"portable",
"nsis"
],
"icon": "assets/icon.ico"
},
"nsis": {
"oneClick": false,
"allowToChangeInstallationDirectory": true
}
},
"devDependencies": {
"@types/node": "^20.11.0",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"concurrently": "^8.2.2",
"copy-webpack-plugin": "^12.0.2",
"css-loader": "^6.9.1",
"electron": "^28.1.4",
"electron-builder": "^24.9.1",
"html-webpack-plugin": "^5.6.0",
"style-loader": "^3.3.4",
"ts-loader": "^9.5.1",
"typescript": "^5.3.3",
"wait-on": "^7.2.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"@codemirror/autocomplete": "^6.12.0",
"@codemirror/commands": "^6.3.3",
"@codemirror/lang-markdown": "^6.2.4",
"@codemirror/language": "^6.10.0",
"@codemirror/search": "^6.5.5",
"@codemirror/state": "^6.4.0",
"@codemirror/view": "^6.23.0",
"@lezer/markdown": "^1.2.0",
"codemirror": "^6.0.1",
"d3-force": "^3.0.0",
"@types/d3-force": "^3.0.9",
"electron-store": "^8.1.0",
"gray-matter": "^4.0.3",
"marked": "^11.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0"
}
}