forked from OpenWebGAL/WebGAL
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
25 lines (25 loc) · 857 Bytes
/
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
{
"name": "@webgal/base",
"version": "4.5",
"description": "A brand new web Visual Novel engine.",
"repository": "https://github.com/MakinoharaShoko/WebGAL.git",
"author": "Mahiru <[email protected]>",
"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
}