-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
160 lines (160 loc) · 5.21 KB
/
Copy pathpackage.json
File metadata and controls
160 lines (160 loc) · 5.21 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
{
"name": "notely",
"version": "0.1.25",
"private": true,
"description": "Notely desktop markdown notes app.",
"license": "CC-BY-NC-4.0",
"author": {
"name": "WGLabz",
"email": "weargeniuslabs@gmail.com"
},
"main": "electron/main.cjs",
"scripts": {
"version:generate": "node scripts/generate-app-version.cjs",
"dev": "node scripts/dev.cjs",
"assets:icon": "node scripts/generate-icon.cjs",
"notices": "node scripts/generate-notices.cjs",
"release:clean": "node scripts/clean-release-artifacts.cjs",
"build": "node scripts/sync-design-tokens.cjs && npx vitepress build docs-site && node scripts/build.cjs",
"docs:dev": "node scripts/sync-design-tokens.cjs && npx vitepress dev docs-site",
"docs:build": "node scripts/sync-design-tokens.cjs && npx vitepress build docs-site",
"docs:preview": "npx vitepress preview",
"start": "node scripts/launch-electron.cjs",
"release:collect": "node scripts/copy-exe-to-release.cjs",
"pack:win": "npm run release:clean && npm run assets:icon && npm run notices && npm run build && node scripts/run-electron-builder.cjs --win --dir",
"dist:win": "npm run release:clean && npm run assets:icon && npm run notices && npm run build && node scripts/run-electron-builder.cjs --win && npm run release:collect",
"lint:markdown": "node ./node_modules/markdownlint-cli2/markdownlint-cli2-bin.mjs",
"lint": "node ./node_modules/eslint/bin/eslint.js . --max-warnings=0",
"lint:fix": "node ./node_modules/eslint/bin/eslint.js . --fix --max-warnings=0",
"format": "node ./node_modules/prettier/bin/prettier.cjs --write .",
"format:check": "node ./node_modules/prettier/bin/prettier.cjs --check .",
"test": "node scripts/run-vitest.cjs run",
"test:a11y-smoke": "node scripts/run-vitest.cjs run src/tests/components/accessibility.smoke.test.js",
"test:design-system": "node scripts/run-vitest.cjs run src/tests/components/designSystem.consistency.test.js",
"test:p2p": "node scripts/p2p-harness.cjs",
"test:p2p:packaged": "node scripts/p2p-packaged-validation.cjs",
"ci:check": "npm run lint && npm run build && npm run lint:markdown && npm run test && npm run test:a11y-smoke && npm run test:design-system && npm run test:p2p"
},
"dependencies": {
"@codemirror/lang-markdown": "^6.5.0",
"@codemirror/state": "^6.6.0",
"@codemirror/view": "^6.43.1",
"@excalidraw/excalidraw": "^0.18.1",
"@uiw/codemirror-extensions-langs": "^4.25.10",
"@uiw/react-codemirror": "^4.25.10",
"@xterm/addon-fit": "^0.11.0",
"@xterm/xterm": "^6.0.0",
"@xyflow/react": "^12.11.1",
"dictionary-en-us": "^2.2.1",
"highlight.js": "^11.11.1",
"lucide-react": "^0.405.0",
"markdown-it": "^14.1.0",
"markdown-table": "^3.0.4",
"mermaid": "^11.6.0",
"node-pty": "^1.1.0",
"nspell": "^2.1.5",
"pdfjs-dist": "^4.3.136",
"react": "^19.1.0",
"react-dom": "^19.1.0",
"remark": "^15.0.1",
"remark-gfm": "^4.0.1",
"remark-lint": "^10.0.1",
"remark-preset-lint-recommended": "^7.0.1",
"simple-git": "^3.36.0",
"uuid": "^14.0.1",
"yauzl": "^3.4.0",
"yazl": "^3.3.1"
},
"devDependencies": {
"@eslint/js": "^9.18.0",
"@vitejs/plugin-react": "^4.5.0",
"concurrently": "^9.1.2",
"electron": "^37.2.0",
"electron-builder": "^24.13.3",
"eslint": "^9.18.0",
"eslint-plugin-react": "^7.37.0",
"eslint-plugin-react-hooks": "^5.1.0",
"globals": "^15.14.0",
"jsdom": "^29.1.1",
"markdownlint-cli2": "^0.18.1",
"png-to-ico": "^2.1.8",
"pngjs": "^7.0.0",
"prettier": "^3.4.0",
"rcedit": "^5.0.2",
"vite": "^6.3.5",
"vitepress": "^1.6.4",
"vitepress-plugin-mermaid": "^2.0.17",
"vitest": "^2.1.8",
"wait-on": "^8.0.3"
},
"build": {
"appId": "app.notely.desktop",
"productName": "Notely",
"afterPack": "scripts/afterPack.cjs",
"directories": {
"output": ".artifacts",
"buildResources": "build"
},
"files": [
"dist/**/*",
"electron/**/*",
"src/ai/**/*",
"node_modules/node-pty/**/*",
"node_modules/node-addon-api/**/*",
"scripts/launch-electron.cjs",
"package.json"
],
"extraMetadata": {
"main": "electron/main.cjs"
},
"extraResources": [
{
"from": "build/icon.ico",
"to": "icon.ico"
},
{
"from": "build/icon.png",
"to": "icon.png"
}
],
"asar": true,
"asarUnpack": [
"node_modules/node-pty/**/*"
],
"win": {
"signAndEditExecutable": false,
"icon": "build/icon.ico",
"publisherName": "Notely",
"verifyUpdateCodeSignature": false,
"target": [
{
"target": "nsis",
"arch": [
"x64"
]
},
{
"target": "portable",
"arch": [
"x64"
]
},
{
"target": "zip",
"arch": [
"x64"
]
}
]
},
"nsis": {
"oneClick": false,
"perMachine": false,
"allowToChangeInstallationDirectory": true,
"createDesktopShortcut": true,
"createStartMenuShortcut": true,
"shortcutName": "Notely"
},
"copyright": "Copyright (c) 2026 Notely"
}
}