-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 976 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 976 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
{
"name": "elemap",
"version": "0.4.1",
"description": "Elemap is a zero-dependency TS library for creating interactive game maps, rendered using HTML elements and CSS.",
"keywords": [
"game",
"map",
"hexagon"
],
"homepage": "https://anbeeld.com/elemap",
"repository": {
"type": "git",
"url": "https://github.com/Anbeeld/Elemap.git"
},
"bugs": {
"url": "https://github.com/Anbeeld/Elemap/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"
},
"devDependencies": {
"@types/node": "^22.14.0",
"rimraf": "^6.0.1",
"ts-loader": "^9.5.2",
"typescript": "^5.8.3",
"webpack-cli": "^6.0.1"
}
}