-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.19 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
{
"name": "type-novel-reader",
"author": "Watanabe Masaki",
"description": "Reader application for TypeNovel format",
"productName": "TypeNovelReader",
"version": "1.7.4",
"main": "electron/dist/electron/main.js",
"scripts": {
"ng": "ng",
"start": "ng serve",
"build": "ng build",
"test": "ng test",
"lint": "ng lint",
"e2e": "ng e2e",
"electron": "tsc --p electron && ng build --prod --extraWebpackConfig webpack.extra.js && electron .",
"pack:win": "electron-builder --win",
"pack:mac": "electron-builder --mac",
"pack:linux": "electron-builder --linux"
},
"private": true,
"dependencies": {
"@angular/animations": "^13.3.4",
"@angular/cdk": "^13.3.4",
"@angular/common": "~13.3.4",
"@angular/compiler": "~13.3.4",
"@angular/core": "~13.3.4",
"@angular/forms": "~13.3.4",
"@angular/material": "^13.3.4",
"@angular/platform-browser": "~13.3.4",
"@angular/platform-browser-dynamic": "~13.3.4",
"@angular/router": "~13.3.4",
"encoding-japanese": "^1.0.29",
"katex": "^0.15.2",
"marked": "^4.0.12",
"md5": "^2.3.0",
"nehan": "^7.8.0",
"nehan-anchor": "^0.0.1",
"nehan-highlight": "^0.1.2",
"nehan-katex": "^0.0.3",
"nehan-speech-border": "^0.0.1",
"rxjs": "~6.6.7",
"tslib": "^2.3.0",
"typenovel": "^1.2.0",
"typescript": "~4.4.4",
"yauzl": "^2.10.0",
"zone.js": "~0.11.4"
},
"devDependencies": {
"@angular-devkit/build-angular": "^13.2.5",
"@angular/cli": "~13.3.3",
"@angular/compiler-cli": "~13.3.4",
"@angular/language-service": "~13.3.4",
"@types/jasmine": "^3.6.4",
"@types/jasminewd2": "^2.0.8",
"@types/katex": "^0.11.0",
"@types/marked": "^2.0.0",
"@types/node": "^15.0.1",
"codelyzer": "^6.0.0",
"electron": "^17.1.0",
"electron-builder": "^22.11.3",
"jasmine-core": "~3.7.1",
"jasmine-spec-reporter": "^7.0.0",
"karma": "~6.3.2",
"karma-chrome-launcher": "~3.1.0",
"karma-coverage-istanbul-reporter": "~3.0.2",
"karma-jasmine": "~4.0.0",
"karma-jasmine-html-reporter": "^1.5.0",
"ngx-build-plus": "^13.0.1",
"protractor": "~7.0.0",
"ts-node": "^9.1.1",
"tslint": "^6.1.3"
}
}