-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 2.48 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 2.48 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "kaplay-plugin-tiled",
"version": "1.1.2",
"description": "KAPLAY plugin for Tiled maps",
"author": "Mark <mark@remarkablemark.org> (https://remarkablemark.org)",
"main": "./dist/plugin.cjs",
"module": "./dist/plugin.mjs",
"types": "./dist/plugin.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/plugin.d.mts",
"default": "./dist/plugin.mjs"
},
"require": {
"types": "./dist/plugin.d.cts",
"default": "./dist/plugin.cjs"
}
},
"./global": {
"import": {
"types": "./global.d.ts",
"default": "./global.js"
},
"require": {
"types": "./global.d.ts",
"default": "./global.js"
}
}
},
"scripts": {
"build": "vite build",
"clean": "rm -rf coverage dist docs",
"docs": "typedoc",
"docs:watch": "npm run docs -- --watch",
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"lint:package": "publint",
"lint:tsc": "tsc",
"prepare": "husky",
"prepublishOnly": "npm run build && npm run lint && npm run lint:tsc && npm run test:ci",
"start": "vite --open",
"test": "vitest run",
"test:ci": "CI=true npm test -- --color",
"test:watch": "vitest --coverage.enabled=false"
},
"repository": {
"type": "git",
"url": "git+https://github.com/remarkablegames/kaplay-plugin-tiled.git"
},
"bugs": {
"url": "https://github.com/remarkablegames/kaplay-plugin-tiled/issues"
},
"keywords": [
"kaplay",
"plugin",
"tiled",
"map",
"json",
"game"
],
"peerDependencies": {
"kaplay": "*"
},
"devDependencies": {
"@commitlint/cli": "20.5.0",
"@commitlint/config-conventional": "20.5.0",
"@eslint/compat": "2.0.5",
"@eslint/js": "10.0.1",
"@types/node": "25.6.0",
"@vitest/coverage-v8": "4.1.4",
"eslint": "10.2.0",
"eslint-plugin-prettier": "5.5.5",
"eslint-plugin-simple-import-sort": "13.0.0",
"eslint-plugin-tsdoc": "0.5.2",
"globals": "17.5.0",
"husky": "9.1.7",
"kaplay": "3001.0.19",
"lint-staged": "16.4.0",
"prettier": "3.8.3",
"publint": "0.3.18",
"typedoc": "0.28.19",
"typescript": "5.9.3",
"typescript-eslint": "8.58.2",
"vite": "8.0.8",
"vite-plugin-dts": "4.5.4",
"vitest": "4.1.4"
},
"files": [
"dist/",
"global.d.ts",
"global.js"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/remarkablemark"
}
],
"license": "MIT"
}