forked from Monogatari/Monogatari
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
136 lines (136 loc) · 4.14 KB
/
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
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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
{
"name": "@monogatari/core",
"version": "2.1.0",
"main": "lib/monogatari.node.js",
"module": "lib/monogatari.module.js",
"css": "dist/engine/core/monogatari.css",
"debug": "dist/engine/core/debug.js",
"web": "dist/engine/core/monogatari.js",
"browserslist": "> 0.5%, last 2 versions, not dead",
"types": "types/index.d.ts",
"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",
"targets": {
"module": {
"source": "src/index.js",
"engines": {
"browsers": "Chrome 80"
},
"outputFormat": "esmodule",
"isLibrary": true,
"optimize": true,
"includeNodeModules": true
},
"debug": {
"source": "debug/index.js",
"engines": {
"browsers": "Chrome 80"
},
"outputFormat": "esmodule",
"isLibrary": true,
"optimize": true,
"includeNodeModules": true
},
"main": {
"source": "src/index.js",
"engines": {
"node": ">= 12"
},
"outputFormat": "commonjs",
"isLibrary": true,
"optimize": true,
"includeNodeModules": true
},
"css": {
"source": "src/index.css"
},
"web": {
"source": "src/browser.js",
"context": "browser",
"outputFormat": "global",
"engines": {
"browsers": "> 0.5%, last 2 versions, not dead"
},
"isLibrary": false,
"optimize": true,
"includeNodeModules": true
}
},
"parcelIgnore": [
"service-worker.js"
],
"scripts": {
"start": "yarn parcel serve index.html --open --no-cache",
"build": "yarn parcel build ./src/index.html",
"build:core": "yarn build:js && yarn build:css",
"build:js": "yarn build:main && yarn build:module && yarn build:web",
"build:main": "yarn parcel build --target main --no-cache --public-url . --no-scope-hoist",
"build:module": "yarn parcel build --target module --no-cache --public-url . --no-scope-hoist",
"build:web": "yarn parcel build --target web --no-cache --public-url . --no-scope-hoist",
"build:debug": "yarn parcel build --taget debug --no-cache --public-url .",
"build:css": "yarn parcel build --target css --no-cache --no-source-maps",
"watch:js": "yarn parcel watch --target web --no-cache --public-url .",
"watch:css": "yarn parcel watch ./ --out-file monogatari.css --dist-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.16.7",
"@babel/eslint-parser": "^7.16.5",
"@babel/plugin-proposal-class-properties": "^7.16.7",
"@babel/plugin-syntax-object-rest-spread": "^7.8.3",
"@babel/preset-env": "^7.16.7",
"@parcel/babel-preset-env": "^2.1.1",
"autoprefixer": "^10.4.2",
"cypress": "^9.2.1",
"dotenv": "^11.0.0",
"electron-notarize": "^1.1.1",
"eslint": "^8.6.0",
"htmlhint": "^1.1.0",
"jsdoc": "^3.6.7",
"parcel": "^2.1.1",
"parcel-resolver-ignore": "^2.0.0",
"postcss": "^8.4.5",
"postcss-calc": "^8.2.2",
"postcss-mixins": "^9.0.1",
"postcss-nested": "^5.0.6",
"stylelint": "^14.2.0",
"stylelint-config-standard": "^24.0.0"
},
"dependencies": {
"@aegis-framework/artemis": "^0.3.29",
"@aegis-framework/kayros.css": "^0.4.5",
"@aegis-framework/pandora": "^0.1.8",
"@fortawesome/fontawesome-free": "^5.15.4",
"animate.css": "^4.1.1",
"core-js": "^3.20.2",
"deeply": "^3.1.0",
"electron": "^16.0.7",
"mixins.css": "^1.0.0",
"moment": "^2.29.1",
"mousetrap": "^1.6.5",
"random-js": "^2.1.0",
"regenerator-runtime": "^0.13.9",
"tsparticles": "^1.39.0"
},
"files": [
"README.md",
"LICENSE",
"package.json",
"src/*",
"dist/engine/*",
"lib/*"
]
}