@famibee/skynovel 2.0.3 → 2.0.5
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/SysBase.js +229 -200
- package/dist/SysBase.js.map +1 -1
- package/dist/pixi.js +2128 -2770
- package/dist/pixi.js.map +1 -1
- package/dist/web.js +49 -533
- package/dist/web.js.map +1 -1
- package/dist_app/SysBase.js +229 -200
- package/dist_app/SysBase.js.map +1 -1
- package/dist_app/appMain.js +1 -21
- package/dist_app/appMain.js.map +1 -1
- package/package.json +1 -28
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@famibee/skynovel",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.5",
|
|
4
4
|
"description": "webgl novelgame framework",
|
|
5
5
|
"author": "miyazawa famibee",
|
|
6
6
|
"publisher": "famibee",
|
|
@@ -33,15 +33,11 @@
|
|
|
33
33
|
"parsimmon": "^1.18.1",
|
|
34
34
|
"pixi.js": "^6.5.10",
|
|
35
35
|
"platform": "^1.3.6",
|
|
36
|
-
"socket.io-client": "^4.8.3",
|
|
37
|
-
"store": "^2.0.12",
|
|
38
36
|
"tinygesture": "^3.0.1"
|
|
39
37
|
},
|
|
40
38
|
"devDependencies": {
|
|
41
39
|
"@eslint/js": "^10.0.1",
|
|
42
40
|
"@happy-dom/global-registrator": "^20.10.6",
|
|
43
|
-
"@semantic-release/changelog": "^6.0.3",
|
|
44
|
-
"@semantic-release/git": "^10.0.1",
|
|
45
41
|
"@types/electron-json-storage": "^4.5.4",
|
|
46
42
|
"@types/fs-extra": "^11.0.4",
|
|
47
43
|
"@types/howler": "^2.2.13",
|
|
@@ -49,7 +45,6 @@
|
|
|
49
45
|
"@types/node": "^26.1.1",
|
|
50
46
|
"@types/parsimmon": "^1.10.9",
|
|
51
47
|
"@types/platform": "^1.3.6",
|
|
52
|
-
"@types/store": "^2.0.5",
|
|
53
48
|
"@typescript/typescript6": "^6.0.2",
|
|
54
49
|
"electron": "^43.1.1",
|
|
55
50
|
"eslint": "^10.7.0",
|
|
@@ -65,8 +60,6 @@
|
|
|
65
60
|
"scripts": {
|
|
66
61
|
"build": "bun src/build.ts",
|
|
67
62
|
"watch": "bun --watch src/build.ts --watch",
|
|
68
|
-
"watch_web": "bun --watch src/build.ts --watch --web",
|
|
69
|
-
"watch_app": "bun --watch src/build.ts --watch --app",
|
|
70
63
|
"update": "bun update && bun watch && ncu -g",
|
|
71
64
|
"test": "bun test --only-failures",
|
|
72
65
|
"testw": "bun test --only-failures --watch",
|
|
@@ -85,26 +78,6 @@
|
|
|
85
78
|
"type": "git",
|
|
86
79
|
"url": "git+https://github.com/famibee/SKYNovel.git"
|
|
87
80
|
},
|
|
88
|
-
"release": {
|
|
89
|
-
"plugins": [
|
|
90
|
-
[
|
|
91
|
-
"@semantic-release/commit-analyzer",
|
|
92
|
-
{
|
|
93
|
-
"preset": "conventionalcommits"
|
|
94
|
-
}
|
|
95
|
-
],
|
|
96
|
-
[
|
|
97
|
-
"@semantic-release/release-notes-generator",
|
|
98
|
-
{
|
|
99
|
-
"preset": "conventionalcommits"
|
|
100
|
-
}
|
|
101
|
-
],
|
|
102
|
-
"@semantic-release/changelog",
|
|
103
|
-
"@semantic-release/npm",
|
|
104
|
-
"@semantic-release/github",
|
|
105
|
-
"@semantic-release/git"
|
|
106
|
-
]
|
|
107
|
-
},
|
|
108
81
|
"publishConfig": {
|
|
109
82
|
"scope": "@famibee",
|
|
110
83
|
"tag": "latest",
|