-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
74 lines (74 loc) · 2 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": "@pixi/tilemap",
"version": "5.0.1",
"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": "./lib/index.mjs",
"require": "./lib/index.js",
"types": "./lib/index.d.ts"
}
},
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"homepage": "http://www.rpgmakerweb.com/",
"bugs": "https://github.com/pixijs/tilemap/issues",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pixijs/tilemap.git"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "xs clean",
"start": "xs serve",
"watch": "xs watch",
"build": "xs build",
"lint": "xs lint",
"lint:fix": "xs lint --fix",
"types": "xs types",
"release": "xs release",
"docs": "xs docs",
"deploy": "xs deploy",
"test": "xs test"
},
"files": [
"lib",
"dist",
"README.md"
],
"peerDependencies": {
"pixi.js": ">=8.0.2"
},
"devDependencies": {
"@pixi/eslint-config": "^4.0.1",
"@pixi/extension-scripts": "^2.4.0",
"@pixi/webdoc-template": "^2.2.3",
"@webdoc/cli": "^2.2.0",
"copyfiles": "^2.4.1",
"npm-run-all": "^4.1.5",
"pixi.js": "^8.0.0-X",
"pre-commit": "^1.2.2",
"rimraf": "^4.1.1",
"tslib": "^2.6.2",
"typescript": "^5.3.3"
},
"extensionConfig": {
"namespace": "PIXI.tilemap",
"docsName": "PixiJS Tilemap",
"docsCopyright": "PixiJS and IvanPopelyshev © 2015-2024",
"docsGoogleAnalytics": "UA-103772589-3",
"docsTitle": "PixiJS Tilemap API Documentation",
"docsDescription": "Documentation for PixiJS Tilemap library",
"docsKeyword": "docs, documentation, pixi, pixijs, filters, webgl, ascii, bloom, convolution, cross-hatch, dotfilter, emboss, pixelate, twist, tiltshift"
}
}