forked from OzymandiasTheGreat/emoji-keyboard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
90 lines (90 loc) · 3.01 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
{
"name": "emoji-keyboard",
"version": "3.1.1",
"description": "Type emoji easily! Virtual keyboard-like emoji palette for Linux with lots of features.",
"homepage": "https://github.com/OzymandiasTheGreat/emoji-keyboard",
"repository": "https://github.com/OzymandiasTheGreat/emoji-keyboard",
"author": {
"name": "Ozymandias (Tomas Ravinskas)",
"email": "[email protected]"
},
"license": "GPL-3.0-or-later",
"keywords": [
"emoji",
"picker",
"virtual-keyboard"
],
"main": "main.js",
"scripts": {
"postinstall": "electron-builder install-app-deps",
"ng": "ng",
"start": "npm-run-all -p electron:serve ng:serve",
"build": "npm run electron:serve-tsc && ng build",
"build:dev": "npm run build -- -c dev",
"build:prod": "npm run build -- -c production",
"build:py": "mkdir -p dist/resources/ && shiv -c main -o dist/resources/main.pyz .",
"ng:serve": "ng serve",
"electron:serve-tsc": "tsc -p tsconfig-serve.json",
"electron:serve": "wait-on http-get://localhost:4200/ && npm run electron:serve-tsc && electron . --dev",
"electron:local": "npm run build:prod && electron .",
"electron:linux": "npm run build:py && npm run build:prod && cp -r src/assets/icons/ dist/resources/icon && electron-builder build --linux",
"lint": "ng lint"
},
"devDependencies": {
"@angular-builders/custom-webpack": "10.0.1",
"@angular-devkit/build-angular": "0.1002.0",
"@angular-eslint/builder": "0.5.0-beta.5",
"@angular/cli": "10.2.0",
"@angular/common": "10.2.0",
"@angular/compiler": "10.2.0",
"@angular/compiler-cli": "10.2.0",
"@angular/core": "10.2.0",
"@angular/language-service": "10.2.0",
"@angular/platform-browser": "10.2.0",
"@angular/platform-browser-dynamic": "10.2.0",
"@angular/router": "10.2.0",
"@ngx-translate/core": "12.0.0",
"@ngx-translate/http-loader": "6.0.0",
"@types/ini": "1.3.30",
"@types/jasmine": "3.6.0",
"@types/jasminewd2": "2.0.8",
"@types/mocha": "8.0.3",
"@types/node": "12.12.6",
"@typescript-eslint/eslint-plugin": "4.6.0",
"@typescript-eslint/parser": "4.6.0",
"chai": "4.2.0",
"codelyzer": "6.0.1",
"conventional-changelog-cli": "2.1.0",
"core-js": "3.6.5",
"electron": "10.1.5",
"electron-builder": "22.9.1",
"electron-reload": "1.5.0",
"eslint": "7.12.1",
"eslint-plugin-import": "2.22.1",
"jasmine-core": "3.6.0",
"spectron": "12.0.0",
"ts-node": "9.0.0",
"typescript": "4.0.5",
"wait-on": "5.2.1",
"webdriver-manager": "12.1.7",
"zone.js": "0.10.3"
},
"engines": {
"node": ">=10.13.0"
},
"dependencies": {
"@angular/animations": "10.2.4",
"@angular/cdk": "10.2.5",
"@angular/forms": "10.2.4",
"@angular/material": "10.2.5",
"@mdi/font": "4.9.95",
"custom-electron-titlebar": "3.2.5",
"ini": "1.3.5",
"npm-run-all": "4.1.5",
"object-observer": "2.5.2",
"python-shell": "1.0.8",
"spinkit": "2.0.1",
"tslib": "2.1.0",
"xdg-portable": "7.2.1"
}
}