forked from Monogatari/Monogatari
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.85 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.85 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
{
"name": "@monogatari/core",
"version": "2.1.0",
"main": "./dist/engine/core/monogatari.js",
"module": "./dist/engine/core/monogatari.js",
"description": "Monogatari is a simple web visual novel engine created to bring Visual Novels to the web.",
"repository": {
"type": "git",
"url": "https://github.com/Monogatari/Monogatari.git"
},
"author": "Diego Islas Ocampo",
"license": "MIT",
"bugs": {
"url": "https://github.com/Monogatari/Monogatari/issues"
},
"homepage": "https://monogatari.io",
"scripts": {
"start": "yarn parcel serve index.html --open --no-cache",
"build": "yarn parcel build ./src/index.html",
"build:core": "yarn run build:js && yarn build:css",
"build:js": "yarn parcel build ./src/index.js --global Monogatari --out-file monogatari.js --out-dir dist/engine/core --no-cache --public-url .",
"build:debug": "yarn parcel build ./debug/index.js --global MonogatariDebug --out-file debug.js --out-dir dist/engine/debug --no-cache --public-url .",
"build:css": "yarn parcel build ./src/index.css --out-file monogatari.css --out-dir dist/engine/core --no-cache --no-source-maps",
"watch:js": "yarn parcel watch ./src/index.js --global Monogatari --out-file monogatari.js --out-dir dist/engine/core --no-cache --public-url .",
"watch:css": "yarn parcel watch ./src/index.css --out-file monogatari.css --out-dir dist/engine/core --no-cache --no-source-maps",
"lint:html": "yarn htmlhint ./dist/index.html",
"lint:js": "yarn eslint ./src --ext .js --ignore-pattern *.min.js && yarn eslint ./dist/js --ext .js --ignore-pattern *.min.js && yarn eslint ./dist/engine/electron --ext .js && yarn eslint ./dist/service-worker.js",
"lint:css": "yarn stylelint ./src/**/*.css ./dist/style/**/*.css --ignore-pattern *.min.css",
"lint": "yarn lint:html && yarn lint:js && yarn lint:css",
"test": "yarn run cypress"
},
"devDependencies": {
"@babel/core": "^7.13.10",
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.13.8",
"autoprefixer": "^9.8.6",
"babel-eslint": "^10.1.0",
"core-js": "^3.9.0",
"cypress": "^6.6.0",
"dotenv": "^8.2.0",
"electron-notarize": "^1.0.0",
"eslint": "^7.22.0",
"htmlhint": "^0.14.2",
"jsdoc": "^3.6.6",
"parcel": "^1.12.4",
"postcss-calc": "^7.0.5",
"precss": "^4.0.0",
"stylelint": "^13.12.0",
"stylelint-config-standard": "^20.0.0"
},
"dependencies": {
"@aegis-framework/artemis": "^0.3.24",
"@aegis-framework/kayros.css": "^0.4.5",
"@aegis-framework/pandora": "^0.1.7",
"@fortawesome/fontawesome-free": "^5.15.2",
"animate.css": "^4.1.1",
"deeply": "^3.1.0",
"electron": "^12.0.1",
"mixins.css": "^1.0.0",
"moment": "^2.29.1",
"mousetrap": "^1.6.5",
"random-js": "^2.1.0",
"tsparticles": "^1.20.1"
},
"files": [
"README.md",
"LICENSE",
"package.json",
"src/*",
"dist/engine/*"
]
}