This repository has been archived by the owner on Jun 21, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 87
/
package.json
97 lines (97 loc) · 2.65 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
{
"name": "i-notes",
"version": "0.6.1",
"private": true,
"author": "heiyehk",
"description": "I便笺拥有漂亮的过度效果,允许开启多个窗口方便在桌面端更方便的记录文字",
"main": "background.js",
"repository": {
"type": "git",
"url": "https://github.com/heiyehk/electron-vue3-inote"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/heiyehk/electron-vue3-inote/issues",
"email": "[email protected]"
},
"scripts": {
"serve": "vue-cli-service electron:serve",
"build": "node script/deleteBuild && vue-cli-service electron:build",
"publish": "yarn build -p always",
"lint": "vue-cli-service lint",
"log": "conventional-changelog -p angular -i CHANGELOG.md -s",
"commit": "yarn log && git add . && cz",
"cz": "cz"
},
"dependencies": {
"conventional-changelog-cli": "^2.2.2",
"core-js": "^3.15.2",
"crypto-js": "^4.1.1",
"dayjs": "^1.10.6",
"electron-log": "^4.4.7",
"electron-updater": "^5.0.1",
"fs-extra": "^10.0.0",
"pg-hstore": "^2.3.4",
"sequelize": "^6.6.5",
"sqlite3": "^5.1.7",
"style-resources-loader": "^1.4.1",
"vditor": "^3.9.0",
"vue": "3.2.26",
"vue-cli-plugin-electron-builder": "^2.1.1",
"vue-router": "^4.0.12"
},
"devDependencies": {
"@types/crypto-js": "^4.0.2",
"@types/sequelize": "^4.28.10",
"@types/sqlite3": "^3.1.7",
"@typescript-eslint/eslint-plugin": "^4.8.2",
"@typescript-eslint/parser": "^4.8.2",
"@vue/cli-plugin-babel": "~4.5.0",
"@vue/cli-plugin-eslint": "~4.5.0",
"@vue/cli-plugin-router": "~4.5.0",
"@vue/cli-plugin-typescript": "~4.5.0",
"@vue/cli-service": "~4.5.0",
"@vue/compiler-sfc": "^3.2.26",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"cz-conventional-changelog": "3.3.0",
"electron": "11.5.0",
"electron-builder": "22.14.5",
"eslint": "^6.7.2",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.1.0",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"lint-staged": "^9.5.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"typescript": "4.4.4",
"vue-cli-plugin-style-resources-loader": "~0.1.4"
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue,ts,tsx}": [
"vue-cli-service lint",
"git add"
]
},
"publish": [
"github"
],
"engines": {
"node": "<=16"
}
}