-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.17 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.17 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
{
"name": "tilted",
"version": "0.4.8",
"description": "Tilted is a lightweight zero-dependency TS library for displaying maps or other similar content in a modern 2.5D way.",
"keywords": [
"map",
"game",
"graphics",
"2d",
"3d",
"javascript",
"typescript"
],
"homepage": "https://anbeeld.com/tilted",
"repository": "github:Anbeeld/Tilted",
"bugs": {
"url": "https://github.com/Anbeeld/Tilted/issues",
"email": "anbeeld@gmail.com"
},
"license": "MIT",
"author": "Anbeeld <anbeeld@gmail.com> (https://anbeeld.com)",
"funding": "http://anbeeld.com/support",
"type": "module",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "rimraf lib && npx tsc && npx webpack",
"examples": "npm run build && node examples/app.js",
"test": "vitest",
"coverage": "vitest run --coverage"
},
"devDependencies": {
"@types/node": "^22.14.0",
"@vitest/coverage-v8": "^3.1.2",
"jsdom": "^26.1.0",
"rimraf": "^6.0.1",
"terser-webpack-plugin": "^5.3.14",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"vitest": "^3.1.2",
"webpack": "^5.99.2",
"webpack-cli": "^6.0.1"
}
}