-
-
Notifications
You must be signed in to change notification settings - Fork 126
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 2.23 KB
/
package.json
File metadata and controls
79 lines (79 loc) · 2.23 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
75
76
77
78
79
{
"name": "@monogatari/core",
"version": "2.7.0",
"type": "module",
"main": "./dist/engine/core/monogatari.module.js",
"module": "./dist/engine/core/monogatari.module.js",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/engine/core/monogatari.module.js",
"default": "./lib/engine/core/monogatari.module.js"
},
"./browser": {
"types": "./dist/types/index.d.ts",
"import": "./dist/engine/core/monogatari.js",
"default": "./dist/engine/core/monogatari.js"
}
},
"css": "dist/engine/core/monogatari.css",
"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": "Diana Islas Ocampo",
"license": "MIT",
"bugs": {
"url": "https://github.com/Monogatari/Monogatari/issues"
},
"homepage": "https://monogatari.io",
"scripts": {
"build": "bun run clean && bun run lint && bun run check && bun build.ts",
"watch": "bun run watch:js && bun run watch:css",
"watch:js": "bun build.ts --watch",
"watch:css": "bun build.ts --css --watch",
"check": "tsc --noEmit",
"clean": "rm -rf dist/engine/core dist/types && rm -rf lib",
"lint": "bunx eslint ./src",
"test": "bunx cypress"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/luxon": "^3.7.1",
"@types/mousetrap": "^1.6.15",
"@typescript-eslint/eslint-plugin": "^8.48.1",
"@typescript-eslint/parser": "^8.48.1",
"bun": "^1.3.4",
"cypress": "^15.7.1",
"dotenv": "^16.4.5",
"eslint": "^9.39.1",
"eslint-plugin-cypress": "^5.2.0",
"globals": "^16.5.0",
"jsdoc": "^4.0.4",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.48.1"
},
"dependencies": {
"@aegis-framework/artemis": "^0.5.2",
"@aegis-framework/kayros.css": "^0.5.1",
"@aegis-framework/pandora": "^0.4.2",
"@fortawesome/fontawesome-free": "^7.1.0",
"@tsparticles/engine": "^3.9.1",
"@tsparticles/slim": "^3.9.1",
"animate.css": "^4.1.1",
"deeply": "^3.1.0",
"luxon": "^3.7.2",
"mousetrap": "^1.6.5",
"random-js": "https://github.com/Monogatari/random-js"
},
"files": [
"README.md",
"LICENSE",
"package.json",
"src/*",
"dist/*"
]
}