-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
99 lines (99 loc) · 2.47 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
{
"name": "@famibee/skynovel",
"version": "1.61.9",
"description": "webgl novelgame framework",
"author": "miyazawa famibee",
"publisher": "famibee",
"license": "MIT",
"main": "./dist/web.js",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"engines": {
"node": ">=22.12"
},
"exports": {
".": "./dist/web.js",
"./web": "./dist/web.js",
"./appMain": "./dist/appMain.js",
"./app": "./dist/app.js"
},
"dependencies": {
"@pixi/sound": "^4.4.1",
"@popperjs/core": "^2.11.8",
"@tweenjs/tween.js": "^23.1.3",
"adm-zip": "^0.5.16",
"devtools-detect": "^4.0.2",
"electron-store": "^8.2.0",
"fs-extra": "^11.2.0",
"gamepad.js": "^2.1.0",
"parsimmon": "^1.18.1",
"pixi.js": "^6.5.10",
"platform": "^1.3.6",
"socket.io-client": "^4.8.1",
"store": "^2.0.12",
"xml2js": "^0.6.2"
},
"devDependencies": {
"@happy-dom/global-registrator": "^15.11.7",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/adm-zip": "^0.5.7",
"@types/electron-json-storage": "^4.5.4",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.2",
"@types/offscreencanvas": "^2019.7.3",
"@types/parsimmon": "^1.10.9",
"@types/platform": "^1.3.6",
"@types/store": "^2.0.5",
"@types/xml2js": "^0.4.14",
"electron": "^33.2.1",
"semantic-release": "^24.2.0",
"typescript": "^5.7.2",
"vite": "6.0.5",
"vite-plugin-dts": "^4.4.0"
},
"scripts": {
"build": "bun src/build.ts",
"watch": "bun --watch src/build.ts --watch",
"watch_web": "bun --watch src/build.ts --watch --web",
"watch_app": "bun --watch src/build.ts --watch --app",
"update": "bun update && bun watch && ncu -g",
"test": "bun test",
"testw": "bun test --watch",
"docs": "vite docs/ --open /tag.html",
"rebuild": "bun pm cache rm && bun watch",
"semantic-release": "semantic-release"
},
"keywords": [
"novelgame",
"visualnovel",
"skynovel",
"webgl",
"typescript"
],
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/famibee/SKYNovel.git"
},
"release": {
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
"@semantic-release/git"
]
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
},
"bugs": {
"url": "https://github.com/famibee/SKYNovel/issues",
"email": "famibee@gmail.com"
},
"homepage": "http://famibee.blog38.fc2.com/"
}