forked from ondras/rot.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
86 lines (82 loc) · 1.93 KB
/
package.json
File metadata and controls
86 lines (82 loc) · 1.93 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
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
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "rot-js",
"version": "2.3.0",
"description": "A roguelike toolkit in JavaScript",
"keywords": [
"ascii",
"dungeon",
"fov",
"game",
"libtcod",
"lighting",
"los",
"rng",
"rogue",
"roguelike",
"tiles"
],
"files": [
"lib",
"dist",
"doc",
"examples",
"addons",
"manual"
],
"homepage": "http://ondras.github.io/rot.js/hp/",
"bugs": "https://github.com/ondras/rot.js/issues",
"license": "BSD-3-Clause",
"author": "Ondřej Žára <ondrej.zara@gmail.com> (http://ondras.zarovi.cz/)",
"main": "dist/rot.js",
"module": "lib/index.js",
"scripts": {
"test": "make test",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js && npx rollup -c rollup.config.js && npx rollup -c rollup.config.min.js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "npx babel src --out-dir lib --extensions \".ts,.tsx\" "
},
"repository": {
"type": "git",
"url": "https://github.com/ondras/rot.js.git"
},
"devDependencies": {
"@babel/cli": "7.16.0",
"@babel/core": "7.16.5",
"@babel/preset-env": "7.16.5",
"@babel/preset-flow":"^7.18.6",
"@babel/preset-typescript": "7.18.6",
"@types/node": "17.0.2",
"google-closure-compiler": "20211201.0.0",
"jasmine": "3.10.0",
"puppeteer-core": "13.0.0",
"rollup": "^2.68.0",
"@rollup/plugin-commonjs": "^24.0.0",
"rollup-plugin-terser":" ^7.0.2",
"typedoc": "0.22.10",
"typescript": "4.5.4"
},
"babel": {
"sourceType": "unambiguous",
"presets": [
[
"@babel/preset-env",
{
"targets": {
"ie": 10
},
"loose": true,
"modules": false
}
],
[
"@babel/preset-flow"
],
[
"@babel/preset-typescript"
]
]
},
"types": "./lib/index.d.ts"
}