This repository has been archived by the owner on Sep 23, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
48 lines (48 loc) · 1.48 KB
/
package.json
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
{
"name": "@matanlurey/tts-save-files",
"version": "0.1.0",
"description": "TypeScript Definitions and JSON Schema for Tabletop Simulator's",
"scripts": {
"fix": "prettier --write . --ignore-path .gitignore && eslint --fix src test tool --ext .json,.ts",
"generate": "ts-node tool/generate.ts --output src/types.d.ts",
"lint": "prettier --ignore-path .gitignore --list-different src && eslint src test tool --ext .json,.ts",
"test": "jest",
"validate": "ajv -d \"test/saves/*.json\" -s \"src/schema/SaveState.json\" -r \"src/schema/**/*.json\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/matanlurey/tts-save-format.git"
},
"main": "src/types.d.ts",
"author": "Matan Lurey",
"keywords": [
"Tabletop",
"Simulator",
"TTS",
"Typings",
"Types",
"Schema"
],
"license": "MIT",
"devDependencies": {
"@types/fs-extra": "^8.1.0",
"@types/jest": "^27.0.2",
"@types/minimist": "^1.2.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"ajv-cli": "^3.1.0",
"eslint": "^8.1.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-json": "^2.1.1",
"eslint-plugin-prettier": "^3.1.3",
"fs-extra": "^9.0.0",
"jest": "^27.3.1",
"json-schema-to-typescript": "^9.0.1",
"minimist": "^1.2.5",
"prettier": "^2.0.5",
"ts-jest": "^27.0.7",
"ts-node": "^10.4.0",
"typescript": "^3.9.10"
}
}