-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.74 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.74 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
{
"name": "@optolith/database-schema",
"version": "0.42.1",
"description": "Definitions and utilities for the flat-file database of Optolith, a character creation tool for the Pen and Paper RPG “The Dark Eye 5”, and its external integrations into other software.",
"keywords": [
"tde",
"thedarkeye",
"dsa",
"dasschwarzeauge"
],
"files": [
"gen",
"lib",
"schema",
"AUTHORS",
"CHANGELOG.md"
],
"main": "./lib/main.js",
"exports": {
".": "./lib/main.js",
"./cache": "./lib/cache/index.js",
"./types": "./lib/types/index.js",
"./types/*": "./lib/types/*.js",
"./gen": "./gen/types.d.ts"
},
"scripts": {
"build": "tsc",
"watch": "tsc -w",
"generate": "tsondb generate",
"generate:watch": "nodemon --watch lib --exec \"tsondb generate\" --ext js",
"test": "node ./lib/test.js",
"lint": "eslint",
"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"
},
"author": "Lukas Obermann",
"license": "MPL-2.0",
"dependencies": {
"@elyukai/utils": "^0.3.3",
"tsondb": "^0.20.3",
"yaml": "^2.8.2"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^25.5.0",
"commit-and-tag-version": "^12.7.1",
"eslint": "^10.1.0",
"globals": "^17.4.0",
"nodemon": "^3.1.14",
"prettier": "^3.8.1",
"typescript": "^5.9.3",
"typescript-eslint": "^8.57.1"
},
"repository": "github:elyukai/optolith-database-schema",
"bugs": {
"url": "https://github.com/elyukai/optolith-database-schema/issues"
},
"type": "module"
}