-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
121 lines (121 loc) · 3.46 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
109
110
111
112
113
114
115
116
117
118
119
120
121
{
"name": "unitext",
"productName": "UniText",
"version": "0.5.3",
"description": "A personal knowledge manager.",
"keywords": [
"Markdown",
"PKM",
"Personal Knowledge Management"
],
"homepage": "",
"repository": "https://github.com/palmcivet/UniText.git",
"author": {
"name": "Palm Civet",
"email": "[email protected]"
},
"license": "Apache-2.0",
"main": "background.js",
"scripts": {
"postinstall": "node script/postinstall.js",
"dev:build": "node script/build.js",
"dev:serve": "node script/dev.js",
"release:mac": "NODE_ENV=prod node script/build.js && electron-builder build --mac dmg",
"release:all": "NODE_ENV=prod node script/build.js && electron-builder build --mac --win --linux --x64"
},
"external": [
"electron-updater",
"electron-store",
"fs-extra",
"level"
],
"dependencies": {
"@iktakahiro/markdown-it-katex": "^4.0.1",
"@palmcivet/unitext-tree-view": "^0.2.3",
"@vscode/ripgrep": "^1.14.2",
"axios": "^0.26.1",
"clone": "^2.1.2",
"electron-store": "^8.0.1",
"electron-updater": "^4.6.1",
"js-yaml": "^4.1.0",
"level": "^7.0.1",
"markdown-it": "^12.3.2",
"markdown-it-emoji": "^2.0.0",
"markdown-it-footnote": "^3.0.3",
"markdown-it-image-lazy-loading": "^1.2.0",
"markdown-it-implicit-figures": "^0.10.0",
"markdown-it-imsize": "^2.0.1",
"markdown-it-ins": "^3.0.1",
"markdown-it-mark": "^3.0.1",
"markdown-it-sub": "^1.0.0",
"markdown-it-sup": "^1.0.0",
"markdown-it-task-lists": "^2.1.1",
"monaco-editor": "^0.33.0",
"pinia": "^2.0.11",
"prismjs": "^1.26.0",
"remixicon": "^2.5.0",
"striptags": "^3.2.0",
"uslug": "^1.0.4",
"vue": "^3.2.29",
"vue-i18n": "^9.2.0-beta.30"
},
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/plugin-proposal-decorators": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@vue/compiler-sfc": "^3.2.29",
"babel-loader": "^8.2.3",
"babel-plugin-prismjs": "^2.1.0",
"chalk": "4.1.2",
"css-loader": "^6.6.0",
"dotenv": "^16.0.0",
"electron": "^17.0.0",
"electron-builder": "^22.14.5",
"electron-devtools-installer": "^3.2.0",
"file-loader": "^6.2.0",
"fs-extra": "^10.0.0",
"html-webpack-plugin": "^5.5.0",
"husky": "^7.0.4",
"jszip": "^3.9.1",
"less": "^4.1.2",
"less-loader": "^10.2.0",
"license-checker": "^25.0.1",
"lint-staged": "^12.3.3",
"magic-string": "^0.25.7",
"mini-css-extract-plugin": "^2.5.3",
"prettier": "^2.5.1",
"style-loader": "^3.3.1",
"typescript": "^4.5.5",
"vue-loader": "^17.0.0",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2",
"webpack-dev-server": "^4.7.4"
},
"optionalDependencies": {
"@types/fs-extra": "^9.0.13",
"@types/level": "^6.0.0",
"@types/markdown-it": "^12.2.3",
"@types/node": "^17.0.15",
"@types/prismjs": "^1.26.0",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"eslint": "^8.8.0",
"eslint-config-standard": "^16.0.3",
"eslint-import-resolver-alias": "^1.1.2",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-vue": "^8.4.1"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{js,ts,vue}": [
"eslint --ext --fix .ts,.vue,.js src scripts"
]
}
}