-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.35 KB
/
package.json
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
{
"name": "Notedown",
"version": "1.0.0-beta",
"description": "The Markdown based Note app",
"main": "main.js",
"scripts": {
"test": "jest",
"start": "electron-forge start",
"package": "electron-forge package",
"make": "electron-forge make",
"debug": "electron --inspect=9229 main.js",
"rebuild": "electron-rebuild",
"nodemon": "nodemon --watch index.html --exec npm run debug"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vipinsingh211/notedown.git"
},
"author": "Vipin Singh <[email protected]>",
"license": "ISC",
"bugs": {
"url": "https://github.com/vipinsingh211/notedown/issues"
},
"homepage": "https://github.com/vipinsingh211/notedown#readme",
"devDependencies": {
"@electron-forge/cli": "^7.2.0",
"@electron-forge/maker-deb": "^7.2.0",
"@electron-forge/maker-rpm": "^7.2.0",
"@electron-forge/maker-squirrel": "^7.2.0",
"@electron-forge/maker-zip": "^7.2.0",
"@electron-forge/plugin-auto-unpack-natives": "^7.2.0",
"electron": "^28.1.3",
"electron-rebuild": "^3.2.9",
"eslint": "^8.56.0",
"jest": "^29.7.0"
},
"dependencies": {
"better-sqlite3": "^9.3.0",
"bootstrap": "^5.3.2",
"dompurify": "^3.0.8",
"electron-squirrel-startup": "^1.0.0",
"jquery": "^3.7.1",
"jsdom": "^23.2.0",
"markdown-it": "^14.0.0"
}
}