-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 905 Bytes
/
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
{
"name": "rglk",
"type": "module",
"version": "0.0.0",
"license": "MIT",
"description": "Simple JS library for development roguelike games",
"author": "Dmitry Petrov",
"keywords": [
"roguelike",
"game",
"dungeon",
"astar",
"fov"
],
"repository": {
"type": "git",
"url": "https://github.com/krutoo/rglk.js.git"
},
"scripts": {
"check": "tsc -p . --noEmit",
"fmt": "prettier . --write",
"test": "node --import=tsimp/import --test src/prng/__test__/index.test.ts",
"build:clean": "rm -rf dist",
"build:main": "tsc --project tsconfig.build.json",
"build": "npm run build:clean && npm run build:main"
},
"devDependencies": {
"@types/node": "^22.8.7",
"prettier": "^3.3.3",
"tsimp": "^2.0.12",
"typescript": "^5.6.3"
},
"files": [
"dist",
"README.md"
],
"exports": {
".": "./dist/index.js"
}
}