forked from Beaver-Notes/Beaver-Notes
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·108 lines (108 loc) · 3.36 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
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
{
"name": "Beaver-notes",
"type": "module",
"private": false,
"version": "3.1.0",
"author": "Daniele Rolli",
"description": "Your Personal Note-Taking Haven for Privacy and Efficiency",
"license": "MIT",
"engines": {
"node": ">=v16.20.1",
"npm": ">=8.19"
},
"homepage": "https://beavernotes.com",
"repository": {
"type": "git",
"url": "https://github.com/Daniele-rolli/Beaver-Notes"
},
"main": "packages/main/dist/index.cjs",
"scripts": {
"build": "node scripts/build.js",
"precompile": "cross-env MODE=production npm run build",
"compile": "electron-builder build --config electron-builder.config.cjs --dir --config.asar=false",
"pretest": "cross-env MODE=test npm run build",
"test": "node tests/app.spec.js",
"watch": "node scripts/watch.js",
"lint": "eslint . --ext js,ts,vue",
"postinstall": "electron-builder install-app-deps",
"tran-util": "node scripts/translationUtil.js"
},
"browserslist": [
"Chrome 91"
],
"simple-git-hooks": {
"pre-commit": "npx lint-staged"
},
"lint-staged": {
"*.{js,ts,vue}": "eslint --cache --fix"
},
"devDependencies": {
"@vitejs/plugin-vue": "^5.0.2",
"autoprefixer": "^10.3.1",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.3",
"dmg-builder": "^24.5.0",
"electron": "28.1.1",
"electron-builder": "^24.13.3",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier-vue": "^3.1.0",
"eslint-plugin-vue": "^9.18.1",
"lint-staged": "^11.1.2",
"postcss": "^8.4.33",
"postcss-nested": "^6.0.1",
"sass": "^1.70.0",
"spectron": "^15.0.0",
"vite": "^5.0.11"
},
"dependencies": {
"@benrbray/prosemirror-math": "^0.2.2",
"@tailwindcss/typography": "0.4.1",
"@tiptap/extension-code": "^2.1.16",
"@tiptap/extension-code-block-lowlight": "^2.1.16",
"@tiptap/extension-highlight": "^2.1.16",
"@tiptap/extension-image": "^2.1.16",
"@tiptap/extension-link": "^2.1.16",
"@tiptap/extension-mention": "^2.1.16",
"@tiptap/extension-placeholder": "^2.1.16",
"@tiptap/extension-table": "^2.2.4",
"@tiptap/extension-table-cell": "^2.2.4",
"@tiptap/extension-table-header": "^2.2.4",
"@tiptap/extension-table-row": "^2.2.4",
"@tiptap/extension-task-item": "^2.1.16",
"@tiptap/extension-task-list": "^2.1.16",
"@tiptap/extension-text-align": "^2.2.4",
"@tiptap/extension-typography": "^2.1.16",
"@tiptap/extension-underline": "^2.1.16",
"@tiptap/pm": "^2.1.16",
"@tiptap/starter-kit": "^2.1.16",
"@tiptap/suggestion": "^2.1.16",
"@tiptap/vue-3": "^2.1.16",
"bcryptjs": "^2.4.3",
"crypto-es": "2.1.0",
"crypto-js": "^4.2.0",
"dayjs": "^1.10.6",
"electron-better-ipc": "^2.0.1",
"electron-browser-storage": "^1.0.7",
"electron-fetch": "^1.9.1",
"electron-store": "^8.0.0",
"electron-updater": "^6.1.1",
"electron-window-state": "^5.0.3",
"fs-extra": "^11.2.0",
"highlight.js": "^11.9.0",
"katex": "^0.13.0",
"lowlight": "2.4.0",
"mousetrap": "^1.6.5",
"nanoid": "^3.1.25",
"pinia": "^2.0.0-rc.4",
"tailwindcss": "^2.2.7",
"terser": "^5.26.0",
"tiny-emitter": "^2.1.0",
"tippy.js": "^6.3.1",
"tiptap-extension-resize-image": "^1.0.3",
"tiptap-text-direction": "^0.3.1",
"v-remixicon": "^0.0.9",
"vue": "^3.4.6",
"vue-router": "^4.0.11"
}
}