-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.19 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.19 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
{
"name": "ray",
"productName": "Ray",
"version": "1.2.0",
"description": "Desktop HTML text editor with advanced features",
"type": "module",
"keywords": [
"html",
"text",
"editor",
"note",
"wysiwyg"
],
"main": "main/main.js",
"scripts": {
"dev": "node scripts/dev-server.js",
"build": "node scripts/build.js && electron-builder --publish never",
"build:win": "node scripts/build.js && electron-builder --win --publish never",
"build:win:nsis": "node scripts/build.js && electron-builder --win nsis --publish never",
"build:win:portable": "node scripts/build.js && electron-builder --win portable --publish never",
"build:mac": "node scripts/build.js && electron-builder --mac --publish never",
"build:linux": "node scripts/build.js && electron-builder --linux --publish never",
"lint": "eslint ."
},
"repository": "https://github.com/teslor/ray",
"author": {
"name": "Pavel D.",
"email": "teslor@users.noreply.github.com",
"url": "https://github.com/teslor"
},
"license": "MIT",
"devDependencies": {
"@eslint/js": "^9.32.0",
"@stylistic/eslint-plugin": "^5.2.3",
"@vitejs/plugin-vue": "^6.0.1",
"chalk": "^4.1.2",
"chokidar": "^4.0.3",
"electron": "^37.2.6",
"electron-builder": "26.0.18",
"eslint": "^9.32.0",
"eslint-plugin-vue": "^10.4.0",
"globals": "^16.3.0",
"typescript": "^5.9.2",
"typescript-eslint": "^8.39.0",
"vite": "^7.1.1",
"vue-eslint-parser": "^10.2.0"
},
"dependencies": {
"@tiptap/extension-highlight": "^3.0.9",
"@tiptap/extension-image": "^3.0.9",
"@tiptap/extension-list": "^3.0.9",
"@tiptap/extension-subscript": "^3.0.9",
"@tiptap/extension-superscript": "^3.0.9",
"@tiptap/extension-text-align": "^3.0.9",
"@tiptap/extension-text-style": "^3.0.9",
"@tiptap/extension-typography": "^3.0.9",
"@tiptap/pm": "^3.0.9",
"@tiptap/starter-kit": "^3.0.9",
"@tiptap/vue-3": "^3.0.9",
"@vueuse/core": "^13.6.0",
"electron-store": "^10.1.0",
"element-plus": "^2.10.6",
"jquery": "^3.7.1",
"jstree": "^3.3.17",
"loglevel": "^1.9.2",
"mousetrap": "^1.6.5",
"vue": "^3.5.18",
"vuex": "^4.1.0"
}
}