-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
92 lines (92 loc) · 1.7 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
{
"name": "gallery",
"version": "1.0.0",
"description": "What can SKYNovel do? sample project",
"main": "app.js",
"appBundleId": "com.fc2.blog.famibee.gallery",
"appCopyright": "(c)famibee",
"author": "famibee",
"license": "MIT",
"dependencies": {
"@famibee/skynovel": "^1.61.17",
"pixi.js": "^6.5.10",
"three": "^0.170.0"
},
"devDependencies": {
"@types/three": "^0.170.0",
"typescript": "^5.7.2",
"vite": "^6.0.6"
},
"scripts": {
"web_dev": "vite",
"web_prd": "vite build",
"web_pv": "vite preview",
"update": "bun update && bun web_dev"
},
"build": {
"appId": "com.fc2.blog.famibee.gallery",
"productName": "SKYNovelギャラリー",
"directories": {
"output": "build"
},
"files": [
"app/",
"app.js",
"prj/",
"build/icon/*"
],
"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_gallery.git"
},
"bugs": {
"url": "https://github.com/famibee/SKYNovel_gallery/issues",
"email": "famibee@gmail.com"
},
"homepage": "https://famibee.blog.fc2.com/"
}