-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.83 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"$schema": "http://json.schemastore.org/package",
"name": "@kayahr/tiled",
"version": "0.0.1",
"description": "A set of TypeScript interfaces, types and enums, API documentation, JSON file typings, JSON schema and helper functions to work with JSON files created by the Tiled map editor",
"keywords": [
"typescript",
"tiled",
"json",
"schema",
"tilemap",
"map",
"editor",
"typings"
],
"license": "MIT",
"repository": "github:kayahr/tiled",
"publishConfig": {
"access": "public"
},
"author": {
"name": "Klaus Reimer",
"email": "[email protected]"
},
"scripts": {
"clean": "rimraf lib coverage doc/api",
"apidoc": "typedoc",
"build": "run-p clean build:*",
"build:compile": "tsc",
"build:schema": "run-p build:schema:*",
"build:schema:map": "ts-json-schema-generator -f tsconfig.json -e all -t Map -o lib/map.schema.json",
"build:schema:tileset": "ts-json-schema-generator -f tsconfig.json -e all -t ExternalTileset -o lib/tileset.schema.json",
"build:schema:template": "ts-json-schema-generator -f tsconfig.json -e all -t ObjectTemplate -o lib/template.schema.json",
"prepare": "npm run build",
"test:lint": "eslint --max-warnings 0 --ext .ts src",
"test:spell": "cspell --no-progress",
"test:unit": "jest",
"test:apidoc": "typedoc --emit none",
"test": "npm run test:unit && npm run test:lint && npm run test:spell && npm run test:apidoc",
"site": "npm run apidoc && rimraf site && copyfiles -V -u 2 'doc/api/**/*' site && copyfiles -V -u 1 lib/*.schema.json site"
},
"files": [
"lib/main/",
"src/main/",
"lib/*.schema.json"
],
"main": "lib/main/index.js",
"types": "lib/main/index.d.ts",
"exports": {
".": "./lib/main/index.js",
"./tiled.schema.json": "./lib/tiled.schema.json"
},
"funding": {
"url": "https://github.com/kayahr/tiled?sponsor=1"
},
"devDependencies": {
"@kayahr/eslint-config": "2.10.2",
"@types/jest": "29.5.11",
"@types/node": "20.11.9",
"@types/pako": "2.0.3",
"@typescript-eslint/eslint-plugin": "6.19.1",
"@typescript-eslint/parser": "6.19.1",
"ajv": "8.12.0",
"copyfiles": "2.4.1",
"cspell": "8.3.2",
"eslint": "8.56.0",
"eslint-plugin-deprecation": "2.0.0",
"eslint-plugin-simple-import-sort": "10.0.0",
"jest": "29.7.0",
"npm-run-all": "4.1.5",
"rimraf": "5.0.5",
"ts-json-schema-generator": "1.5.0",
"typedoc": "0.25.7",
"typescript": "5.3.3"
},
"dependencies": {
"base64-js": "^1.5.1",
"fzstd": "^0.1.0",
"pako": "^2.1.0",
"tslib": "^2.6.2"
}
}