-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 840 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 840 Bytes
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
{
"name": "tile-world",
"version": "1.0.0",
"main": "dist/tileworld.cjs.js",
"module": "dist/tileworld.esm.js",
"types": "dist/index.d.ts",
"browser": "dist/tileworld.umd.js",
"exports": {
".": {
"import": "./dist/tileworld.esm.js",
"require": "./dist/tileworld.cjs.js",
"types": "./dist/index.d.ts"
}
},
"scripts": {
"build": "tsc && rollup -c"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-typescript": "^11.1.0",
"rollup": "^4.0.0",
"rollup-plugin-dts": "^5.3.0",
"tslib": "^2.8.1",
"typescript": "^5.3.0"
},
"type": "module",
"keywords": [
"tiles",
"tile",
"tilemap",
"game",
"games",
"gamemap"
],
"files": [
"dist"
],
"author": "Shukaaa",
"license": "ISC",
"description": ""
}