-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 979 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 979 Bytes
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
{
"name": "@webgal/base",
"version": "4.5",
"description": "A brand new web Visual Novel engine.",
"repository": "https://github.com/MakinoharaShoko/WebGAL.git",
"author": "Mahiru <Mahiru_@outlook.com>",
"scripts": {
"build": "yarn parser:build && yarn webgal:build",
"build-ci": "yarn parser:build-ci && yarn webgal:build",
"dev": "yarn parser:build && yarn webgal:dev",
"webgal:dev": "cd packages/webgal && yarn dev",
"webgal:build": "cd packages/webgal && yarn build",
"parser:test": "cd packages/parser && yarn test",
"parser:test-coverage": "cd packages/parser && yarn coverage",
"parser:build": "cd packages/parser && yarn build",
"parser:build-ci": "cd packages/parser && yarn build-ci"
},
"license": "MPL-2.0",
"workspaces": {
"packages": [
"packages/*"
]
},
"private": true,
"engines": {
"node": "18"
},
"packageManager": "yarn@1.22.22",
"dependencies": {
"openai": "^4.97.0"
}
}