-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
74 lines (74 loc) · 2.28 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
{
"name": "platfuse",
"version": "1.6.0",
"type": "module",
"description": "Platform game engine concept based on Tiled map editor",
"author": "Piotr Praga <[email protected]>",
"homepage": "https://praghus.github.io/platfuse",
"repository": {
"type": "git",
"url": "https://github.com/praghus/platfuse"
},
"keywords": [
"typescript",
"canvas",
"game",
"gamedev",
"engine",
"pixelart",
"tiled",
"tmx",
"platformer"
],
"main": "dist/platfuse.cjs.js",
"module": "dist/platfuse.esm.js",
"browser": "dist/platfuse.umd.js",
"types": "dist/@types/index.d.ts",
"files": [
"dist"
],
"bin": {
"platfuse": "bin/install.mjs"
},
"scripts": {
"dev": "rollup -c -w",
"build": "rollup -c && api-extractor run",
"eslint:fix": "eslint src/ --fix",
"prettier:write": "prettier --write \"src/**/*.{js,jsx,ts,tsx}\"",
"prettier:check": "prettier -c \"src/**/*.{js,jsx,ts,tsx}\"",
"predocs": "rimraf ./docs",
"docs": "typedoc src --name Platfuse --out docs",
"doc:publish": "gh-pages -m \"[ci skip] Updates\" -d docs",
"clean": "rimraf ./build ./dist ./docs",
"test": "echo \"Error: no test specified\" && exit 1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.6.0",
"@microsoft/api-extractor": "^7.47.0",
"@rollup/plugin-commonjs": "^26.0.1",
"@rollup/plugin-typescript": "^11.1.6",
"@types/howler": "^2.2.11",
"@types/node": "^20.14.9",
"@typescript-eslint/eslint-plugin": "^7.15.0",
"@typescript-eslint/parser": "^7.15.0",
"eslint": "^9.6.0",
"eslint-config-prettier": "^9.1.0",
"gh-pages": "^6.1.1",
"interface": "^1.2.1",
"prettier": "^3.3.2",
"rimraf": "^5.0.7",
"rollup": "^4.18.0",
"rollup-plugin-node-polyfills": "^0.2.1",
"rollup-plugin-version-injector": "^1.3.3",
"ts-node": "^10.9.2",
"tslib": "^2.6.3",
"typedoc": "^0.26.3",
"typescript": "5.4.2"
},
"dependencies": {
"howler": "^2.2.4",
"ora": "^8.0.1",
"tmx-map-parser": "^1.3.3"
}
}