This repository has been archived by the owner on Oct 6, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
package.json
86 lines (86 loc) · 3.06 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
{
"name": "glyphfinder",
"productName": "Glyphfinder",
"version": "1.4.1",
"description": "Unicode character search for macOS & Windows.",
"author": "überdosis GbR <[email protected]>",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"lint": "vue-cli-service lint",
"electron:build": "vue-cli-service electron:build",
"electron:build:mac": "vue-cli-service electron:build --mac",
"electron:build:win": "vue-cli-service electron:build --win --x64",
"electron:generate-icons": "electron-icon-builder --input=./public/icon.png --output=build --flatten",
"electron:publish:mac": "yarn electron:build:mac --publish always",
"electron:publish:win": "yarn electron:build:win --publish always",
"electron:serve": "vue-cli-service electron:serve",
"generate": "node ./src/generator/generate.js",
"parse": "node ./src/data/parse.js",
"postinstall": "electron-builder install-app-deps",
"postuninstall": "electron-builder install-app-deps",
"setapp:build": "cross-env VUE_APP_IS_SETAPP=true yarn electron:build:mac",
"setapp:start": "cross-env VUE_APP_IS_SETAPP=true vue-cli-service electron:serve",
"start": "vue-cli-service electron:serve",
"fix:build:mac": "node ./src/fix-zip-file-for-mac.js"
},
"main": "background.js",
"dependencies": {
"axios": "^0.19.2",
"bail": "^1.0.5",
"codepoints": "^1.3.0",
"collect.js": "^4.28.6",
"concat-stream": "^2.0.0",
"copy-to-clipboard": "^3.3.1",
"core-js": "^3.6.5",
"csv-parser": "^2.3.3",
"custom-electron-titlebar": "^3.2.3",
"d3-scale": "^3.2.1",
"electron-log": "^4.2.2",
"electron-notarize": "^1.0.0",
"electron-store": "^6.0.0",
"electron-updater": "^4.3.4",
"emojibase-data": "^5.1.1",
"flexsearch": "^0.6.32",
"gsap": "^3.4.2",
"https": "^1.0.0",
"json2csv": "^5.0.1",
"keyboard-symbol": "^1.0.0",
"load-asset": "^1.2.0",
"matter-js": "^0.14.2",
"matter-wrap": "^0.2.0",
"menubar": "^8.0.0",
"native-keymap": "^2.2.0",
"promise-worker": "^2.0.1",
"scrollmonitor": "^1.2.4",
"vue": "^2.6.10",
"vue-the-mask": "^0.11.1",
"vue-virtual-scroll-list": "^1.4.6"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.4.6",
"@vue/cli-plugin-eslint": "^4.5.7",
"@vue/cli-service": "^4.5.8",
"@vue/eslint-config-standard": "^5.1.2",
"babel-eslint": "^10.1.0",
"cross-env": "^7.0.2",
"electron": "^8.5.3",
"electron-builder-notarize": "^1.2.0",
"electron-devtools-installer": "^3.1.1",
"electron-icon-builder": "^1.0.2",
"eslint": "^7.6.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-scrumpy": "^1.0.0",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-vue": "^6.2.2",
"html-loader": "^1.1.0",
"native-ext-loader": "^2.3.0",
"node-loader": "^1.0.1",
"sass": "^1.26.10",
"sass-loader": "^8.0.0",
"vue-cli-plugin-electron-builder": "^2.0.0-rc.4",
"vue-template-compiler": "^2.6.10",
"worker-loader": "^2.0.0"
}
}