-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·108 lines (108 loc) · 2.79 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
{
"name": "hatsune",
"version": "1.0.0",
"productName": "初音館にて",
"description": "江戸川乱歩「孤島の鬼」二次創作ノベルゲームサンプルです。",
"main": "doc/app.js",
"appId": "com.fc2.blog.famibee.skynovel.hatsune",
"appBundleId": "com.fc2.blog.famibee.skynovel.hatsune",
"appCopyright": "(c)ふぁみべぇ",
"author": "ふぁみべぇ",
"license": "MIT",
"dependencies": {
"@famibee/skynovel": "^1.61.2",
"about-window": "^1.15.2",
"humane-js": "^3.2.2"
},
"devDependencies": {
"css-loader": "^7.1.2",
"electron": "^33.0.2",
"electron-builder": "^25.1.8",
"rimraf": "^6.0.1",
"style-loader": "^4.0.0",
"url": "^0.11.4",
"webpack": "^5.96.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^5.1.0",
"webpack-obfuscator": "^3.5.1"
},
"scripts": {
"start": "electron doc/app.js",
"web": "npm run watch:wds",
"webpack:dev": "webpack --mode development --config ./core/webpack.config.js",
"webpack:dev:w": "webpack --mode development --watch --config ./core/webpack.config.js",
"watch:wds": "webpack-cli serve --config ./core/wds.config.js --open web.htm",
"watch:wdsdbg": "webpack-cli serve --config ./core/wds.config.js --open web.htm?dip=%7B%22dbg%22:true%2C%22port%22:3776%7D",
"webpack:pro": "rimraf doc/web.*.js && webpack --mode production --config ./core/webpack.config.js",
"npm_check_updates": "ncu -u --target minor && npm update && npm run webpack:dev && ncu -g",
"rebuild": "rimraf package-lock.json && rimraf node_modules && npm cache clear --force && npm i && npm run webpack:dev"
},
"build": {
"appId": "com.fc2.blog.famibee.skynovel.hatsune",
"productName": "初音館にて",
"artifactName": "hatsune-${version}-${arch}.${ext}",
"directories": {
"output": "build/package/"
},
"files": [
"build/icon/*",
"build/include/*",
"doc/app/*",
"doc/prj/",
"doc/app.js"
],
"mac": {
"icon": "build/icon/icon.icns",
"target": [
"dmg"
],
"category": "public.app-category.games"
},
"dmg": {
"contents": [
{
"x": 410,
"y": 220,
"type": "link",
"path": "/Applications"
},
{
"x": 130,
"y": 220,
"type": "file"
},
{
"x": 130,
"y": 100,
"type": "file",
"path": "build/include/readme.txt"
}
]
},
"win": {
"icon": "build/icon/icon.ico",
"target": "nsis",
"asarUnpack": [
"build/include/"
]
},
"linux": {
"icon": "build/icon/icon.icns",
"target": "AppImage",
"category": "Game"
}
},
"keywords": [
"sample",
"skynovel"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com:famibee/SKYNovel_hatsune.git"
},
"bugs": {
"url": "https://github.com/famibee/SKYNovel_hatsune/issues",
"email": "ugainovel@gmail.com"
},
"homepage": "https://ugainovel.blog.fc2.com/"
}