-
-
Notifications
You must be signed in to change notification settings - Fork 249
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.81 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.81 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
{
"name": "masscode",
"version": "3.11.0",
"description": "A free and open source code snippets manager for developers",
"author": {
"name": "Anton Reshetov",
"url": "https://github.com/antonreshetov"
},
"license": "AGPL-3.0",
"repository": "https://github.com/massCodeIO/massCode",
"main": "build/main/index.js",
"engines": {
"pnpm": ">=9.0.0"
},
"scripts": {
"dev": "npm run build:main && concurrently -k \"vite\" \"npm:dev:main\" \"npm:dev:start\"",
"dev:main": "nodemon",
"dev:start": "cross-env NODE_ENV=development electronmon .",
"build": "vite build && npm run build:main && electron-builder",
"build:mac": "vite build && npm run build:main && electron-builder --mac --x64 --arm64",
"build:win": "vite build && npm run build:main && electron-builder --win --x64",
"build:linux": "vite build && npm run build:main && electron-builder --linux --x64",
"build:all": "vite build && npm run build:main && npm run build:mac && npm run build:win && npm run build:linux",
"build:main": "npm run copy:locales && tsc -p tsconfig.main.json",
"api:generate": "node scripts/api-generate.js",
"copy:locales": "node scripts/copy-locales.js",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"release": "bumpp -c 'build: release v' -t",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"rebuild": "electron-rebuild",
"prepare": "simple-git-hooks && npm run rebuild"
},
"dependencies": {
"@elysiajs/cors": "^1.2.0",
"@elysiajs/node": "^1.2.5",
"@elysiajs/swagger": "^1.2.2",
"@vueuse/core": "^12.7.0",
"better-sqlite3": "^11.8.1",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"codemirror": "^5.65.18",
"codemirror-textmate": "^1.1.0",
"date-fns": "^4.1.0",
"dom-to-image": "^2.6.0",
"electron-store": "^8.2.0",
"elysia": "^1.2.15",
"fs-extra": "^11.3.0",
"i18next": "^24.2.2",
"i18next-fs-backend": "^2.6.0",
"interactjs": "^1.10.27",
"ky": "^1.7.5",
"lucide-vue-next": "^0.476.0",
"marked": "^15.0.8",
"markmap-lib": "^0.18.11",
"markmap-view": "^0.18.10",
"mermaid": "^11.6.0",
"onigasm": "^2.2.5",
"prettier": "^3.5.3",
"radix-vue": "^1.9.17",
"sanitize-html": "^2.15.0",
"tailwind-merge": "^3.0.2",
"vue-sonner": "^1.3.0",
"vue3-perfect-scrollbar": "^2.0.0"
},
"devDependencies": {
"@antfu/eslint-config": "^3.16.0",
"@commitlint/cli": "^19.6.1",
"@commitlint/config-conventional": "^19.6.0",
"@electron/rebuild": "^3.7.1",
"@tailwindcss/postcss": "^4.0.9",
"@tailwindcss/vite": "^4.0.9",
"@types/better-sqlite3": "^7.6.12",
"@types/codemirror": "^5.60.15",
"@types/dom-to-image": "^2.6.7",
"@types/fs-extra": "^11.0.4",
"@types/node": "^22.10.8",
"@types/sanitize-html": "^2.15.0",
"@vitejs/plugin-vue": "^5.2.1",
"autoprefixer": "^10.4.20",
"bumpp": "^9.10.2",
"concurrently": "^9.1.2",
"cross-env": "^7.0.3",
"electron": "^34.0.1",
"electron-builder": "^25.1.8",
"electronmon": "^2.0.3",
"eslint": "^9.18.0",
"lint-staged": "^15.4.2",
"nodemon": "^3.1.9",
"prettier-plugin-tailwindcss": "^0.6.11",
"sass": "^1.85.1",
"simple-git-hooks": "^2.11.1",
"tailwindcss": "^4.0.9",
"typescript": "^5.7.3",
"unplugin-auto-import": "^19.1.0",
"unplugin-vue-components": "^28.4.0",
"vite": "^6.1.1",
"vue": "^3.5.13",
"vue-router": "^4.5.0"
},
"simple-git-hooks": {
"pre-commit": "npx lint-staged",
"commit-msg": "npx commitlint --edit $1"
},
"lint-staged": {
"*.{js,ts,vue}": [
"prettier --write",
"eslint --fix"
]
},
"electronmon": {
"patterns": [
"!scripts/**/*",
"!src/renderer/**/*",
"!src/main/**/*"
]
},
"volta": {
"node": "20.16.0"
}
}