Files
entity-descriptions/package.json
T
2026-03-13 18:15:39 +01:00

60 lines
1.6 KiB
JSON

{
"name": "@optolith/entity-descriptions",
"version": "0.4.0",
"description": "An interface for generating descriptions for The Dark Eye entities.",
"files": [
"lib",
"AUTHORS",
"CHANGELOG.md"
],
"main": "lib/index.js",
"exports": {
".": "./lib/index.js",
"./entities/*": "./lib/entities/*.js"
},
"scripts": {
"build": "tsc -b",
"watch": "tsc -b -w",
"format": "prettier \"src/{types/**/*.{ts,tsx},*.{ts,tsx}}\" --write",
"format:check": "prettier \"src/{types/**/*.{ts,tsx},*.{ts,tsx}}\" --check",
"release": "commit-and-tag-version",
"release:sign": "commit-and-tag-version --sign --signoff",
"test": "node --import tsx --test",
"lint": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Optolith/entity-descriptions.git"
},
"author": "Lukas Obermann",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/Optolith/entity-descriptions/issues"
},
"homepage": "https://github.com/Optolith/entity-descriptions#readme",
"dependencies": {
"@elyukai/utils": "^0.3.1",
"@optolith/adventure-points": "^0.1.1",
"@optolith/helpers": "^0.2.2",
"messageformat": "^4.0.0",
"tsondb": "^0.20.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.4.0",
"commit-and-tag-version": "^12.6.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.8.0",
"globals": "^17.4.0",
"optolith-database-schema": "^0.35.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.0"
},
"type": "module",
"engines": {
"node": ">=23"
}
}