forked from gecko655/proofreading-tool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
123 lines (123 loc) · 3.31 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
122
123
{
"name": "proofreading-tool",
"version": "1.0.4",
"private": true,
"description": "pdf, docx, pptx等のファイルを直接入力できる文書校正ツール",
"main": "main.js",
"author": "[email protected]",
"license": "GPLv3",
"repository": {
"type": "git",
"url": "git+https://github.com/gecko655/proofreading-tool.git"
},
"bugs": {
"url": "https://github.com/gecko655/proofreading-tool/issues"
},
"homepage": "https://github.com/gecko655/proofreading-tool#readme",
"scripts": {
"webpack": "webpack",
"webpack-prod": "webpack --env production",
"webpack-watch": "webpack --watch",
"start": "electron main.js",
"pack": "electron-builder --dir",
"dist": "electron-builder",
"pack:mac": "electron-builder --dir --mac",
"pack:win": "electron-builder --dir --win",
"dist:mac": "electron-builder --mac",
"dist:win": "electron-builder --win",
"publish:all": "electron-builder --publish onTagOrDraft --mac --win",
"lint": "eslint main.js lib/ assets/js webpack.config.js",
"lint:fix": "eslint --fix main.js lib/ assets/js webpack.config.js"
},
"dependencies": {
"@textlint-ja/textlint-rule-no-insert-dropping-sa": "^1.0.1",
"@textlint-ja/textlint-rule-no-insert-re": "^1.0.0",
"bootstrap": "^4.6.0",
"chrono-node": "^1.4.3",
"electron-is-packaged": "^1.0.2",
"electron-root-path": "^1.0.16",
"glob": "^7.1.6",
"jquery": "^3.6.0",
"mark.js": "^8.11.1",
"minimist": "^1.2.5",
"popper.js": "^1.16.1",
"textlint": "^11.3.1",
"textlint-rule-date-weekday-mismatch": "^1.0.5",
"textlint-rule-ja-no-abusage": "^2.0.0",
"textlint-rule-ja-no-successive-word": "^1.1.0",
"textlint-rule-ja-unnatural-alphabet": "^2.0.1",
"textlint-rule-preset-icsmedia": "github:ics-creative/textlint-rule-preset-icsmedia",
"textlint-rule-preset-japanese": "^4.0.4",
"textract": "^2.4.0",
"vue": "^2.6.12",
"vue-loader": "^15.9.6"
},
"devDependencies": {
"css-loader": "^5.2.0",
"electron": "^12.0.2",
"electron-builder": "^22.10.5",
"eslint": "^7.23.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-config-prettier": "^8.1.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.3.4",
"eslint-plugin-prettier": "^3.3.1",
"eslint-plugin-vue": "^7.8.0",
"jest": "^26.6.3",
"mini-css-extract-plugin": "^1.4.0",
"prettier": "^2.2.1",
"webpack": "^5.30.0",
"webpack-cli": "^4.6.0"
},
"build": {
"appId": "tokyo.gecko655.proofreading-tool",
"productName": "文書校正ツール",
"extraResources": [
{
"from": "build/${os}/bin",
"to": "bin",
"filter": [
"**/*"
]
},
{
"from": "textlint_config",
"to": "textlint_config",
"filter": [
"**/*"
]
}
],
"mac": {
"target": [
{
"target": "dmg"
},
{
"target": "pkg"
}
],
"publish": [
"github"
]
},
"win": {
"target": [
{
"target": "nsis"
},
{
"target": "zip"
}
],
"publish": [
"github"
]
},
"publish": {
"provider": "github",
"releaseType": "release",
"vPrefixedTagName": true
}
}
}