-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.67 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.67 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
{
"name": "@optolith/entity-descriptions",
"version": "0.4.11",
"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.2",
"@optolith/adventure-points": "^0.1.1",
"@optolith/helpers": "^0.2.2",
"diff": "^8.0.3",
"messageformat": "^4.0.0",
"tsondb": "^0.20.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"commit-and-tag-version": "^12.7.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.8.0",
"globals": "^17.4.0",
"optolith-database-schema": "^0.42.0",
"prettier": "^3.8.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"type": "module",
"engines": {
"node": ">=23"
}
}