forked from pixijs-userland/tilemap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.32 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
{
"name": "@pixi/tilemap",
"version": "4.0.0",
"description": "A low-level, optimized rectangular tilemap implementation for PixiJS.",
"author": "Ivan Popelyshev",
"contributors": [
"Ivan Popelyshev <[email protected]>",
"Shukant Pal <[email protected]>"
],
"type": "module",
"exports": {
".": {
"import": "./dist/pixi-tilemap.es.js",
"require": "./dist/pixi-tilemap.umd.js"
}
},
"types": "./dist/index.d.ts",
"homepage": "http://www.rpgmakerweb.com/",
"bugs": "https://github.com/pixijs/tilemap/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/pixijs/tilemap.git"
},
"scripts": {
"start": "vite build && vite",
"watch": "vite build --watch",
"build": "vite build",
"docs": "typedoc --out ./docs/ --readme README.md ./src/",
"lint": "eslint . --ignore-path .gitignore",
"test": "vitest --run --reporter verbose",
"prepare": "npm run build"
},
"files": [
"dist/",
"LICENSE",
"package.json",
"README.md"
],
"devDependencies": {
"@pixi/core": "^7.0.4",
"@pixi/display": "^7.0.4",
"@pixi/eslint-config": "^4.0.1",
"@types/node": "^18.14.6",
"eslint": "^8.35.0",
"typescript": "^4.9.5",
"vite": "^4.1.4",
"vite-plugin-dts": "^2.1.0",
"vitest": "^0.29.2"
}
}