forked from OpenWebGAL/WebGAL
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 734 Bytes
/
Copy pathpackage.json
File metadata and controls
23 lines (23 loc) · 734 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "@webgal/base",
"version": "4.4",
"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",
"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"
},
"license": "MPL-2.0",
"workspaces": {
"packages": [
"packages/*"
]
},
"private": true
}