-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.15 KB
/
Copy pathpackage.json
File metadata and controls
91 lines (91 loc) · 2.15 KB
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
{
"name": "@famibee/skynovel",
"version": "2.0.5",
"description": "webgl novelgame framework",
"author": "miyazawa famibee",
"publisher": "famibee",
"homepage": "http://famibee.blog38.fc2.com/",
"license": "MIT",
"main": "./dist/web.js",
"types": "./dist/index.d.ts",
"files": [
"dist",
"dist_app"
],
"engines": {
"node": ">=22.19"
},
"exports": {
".": "./dist/web.js",
"./web": "./dist/web.js",
"./appMain": "./dist_app/appMain.js",
"./app": "./dist_app/app.js"
},
"dependencies": {
"@popperjs/core": "^2.11.8",
"@tweenjs/tween.js": "^25.0.0",
"adm-zip": "^0.6.0",
"devtools-detect": "^4.0.2",
"electron-store": "^11.0.2",
"fs-extra": "^11.3.6",
"gamepad.js": "^3.0.1",
"howler": "^2.2.4",
"parsimmon": "^1.18.1",
"pixi.js": "^6.5.10",
"platform": "^1.3.6",
"tinygesture": "^3.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@happy-dom/global-registrator": "^20.10.6",
"@types/electron-json-storage": "^4.5.4",
"@types/fs-extra": "^11.0.4",
"@types/howler": "^2.2.13",
"@types/jest": "^30.0.0",
"@types/node": "^26.1.1",
"@types/parsimmon": "^1.10.9",
"@types/platform": "^1.3.6",
"@typescript/typescript6": "^6.0.2",
"electron": "^43.1.1",
"eslint": "^10.7.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.15.4",
"globals": "^17.7.0",
"jiti": "^2.7.0",
"typescript": "^7.0.2",
"typescript-eslint": "^8.64.0",
"vite": "^8.1.5",
"vite-plugin-dts": "^5.0.3"
},
"scripts": {
"build": "bun src/build.ts",
"watch": "bun --watch src/build.ts --watch",
"update": "bun update && bun watch && ncu -g",
"test": "bun test --only-failures",
"testw": "bun test --only-failures --watch",
"docs": "vite docs/ --open /tag.html",
"rebuild": "bun pm cache rm && bun watch"
},
"keywords": [
"novelgame",
"visualnovel",
"skynovel",
"csj",
"webgl",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/famibee/SKYNovel.git"
},
"publishConfig": {
"scope": "@famibee",
"tag": "latest",
"access": "public",
"provenance": true
},
"bugs": {
"url": "https://github.com/famibee/SKYNovel/issues",
"email": "famibee@gmail.com"
}
}