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
74 lines (74 loc) · 2.88 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 2.88 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
{
"name": "@monogatari/core",
"version": "2.0.0-beta.10",
"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.8.4",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"autoprefixer": "^9.7.4",
"babel-eslint": "^10.0.3",
"core-js": "^3.6.4",
"cypress": "^4.0.2",
"dotenv": "^8.2.0",
"electron-notarize": "^0.2.1",
"eslint": "^6.8.0",
"htmlhint": "^0.11.0",
"jsdoc": "^3.6.3",
"parcel": "^1.12.4",
"postcss-calc": "^7.0.2",
"precss": "^4.0.0",
"stylelint": "^13.2.0",
"stylelint-config-standard": "^20.0.0"
},
"dependencies": {
"@aegis-framework/artemis": "^0.3.23",
"@aegis-framework/kayros.css": "^0.4.5",
"@aegis-framework/pandora": "^0.1.5",
"@fortawesome/fontawesome-free": "^5.12.1",
"animate.css": "^3.7.2",
"deeply": "^3.1.0",
"electron": "^8.0.1",
"mixins.css": "^1.0.0",
"moment": "^2.24.0",
"mousetrap": "^1.6.5",
"particles.js": "^2.0.0",
"random-js": "^2.1.0",
"typed.js": "^2.0.11"
},
"files": [
"README.md",
"LICENSE",
"package.json",
"src/*",
"dist/engine/*"
]
}