-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.04 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.04 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
{
"name": "@kiigame/monorepo",
"description": "Monorepo for development of KiiGame, a lightweight adventure game engine",
"repository": {
"type": "git",
"url": "git+https://github.com/kiigame/adventure_engine.git"
},
"author": "Eino Keskitalo",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kiigame/adventure_engine/issues"
},
"homepage": "https://github.com/kiigame/adventure_engine#readme",
"devDependencies": {
"@commitlint/cli": "^20.5.0",
"@commitlint/config-conventional": "20.5.0",
"commitlint-plugin-tense": "1.0.9",
"husky": "9.1.7"
},
"scripts": {
"prepare": "husky",
"pre-commit": "npm run pre-commit -w '@kiigame/adventure_engine' && npm run pre-commit -w '@kiigame/latkazombit'"
},
"files": [
"dist"
],
"engines": {
"node": ">=20.19.5 < 21 || >= 22.19.0 < 23 || >= 24.8.0",
"npm": ">=11.6.2"
},
"workspaces": [
"kiigame",
"latkazombit"
],
"overrides": {
"mocha": {
"diff": "8.0.4",
"serialize-javascript": "7.0.5"
}
}
}