-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
34 lines (34 loc) · 900 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
{
"name": "raycast.js",
"version": "0.1.3",
"description": "Raycasting performed in an HTML5 canvas using nothing but plain Javascript, with zero-dependencies 🌞🕶",
"main": "index.js",
"scripts": {
"start": "node ./src/index.js",
"style:fix": "prettier --config ./.prettierrc.js --write .",
"style": "prettier --config ./.prettierrc.js --check ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/emre-aki/raycast.js.git"
},
"keywords": [
"raycasting-engine",
"raycasting",
"javascript",
"javascript-game",
"canvas-game",
"canvas",
"html5"
],
"author": "Emre Akı",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/emre-aki/raycast.js/issues"
},
"homepage": "https://github.com/emre-aki/raycast.js#readme",
"dependencies": {
"ejs": "^3.1.3",
"express": "^4.17.1"
}
}