-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 955 Bytes
/
Copy pathpackage.json
File metadata and controls
29 lines (29 loc) · 955 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
{
"name": "yare",
"version": "0.1.0",
"description": "Yet Another Raycasting Engine for the web",
"author": "Camilo DelCódigo",
"keywords": ["raycasting", "engine", "webgl", "canvas", "game-engine", "typescript"],
"license": "MIT",
"main": "build/index.js",
"repository": {
"type": "git",
"url": "https://github.com/delcodigo/yare"
},
"scripts": {
"clean": "rm -rf build",
"build": "npm run clean && npm run lint && tsc --noEmit && esbuild src/index.ts --bundle --platform=browser --minify --outfile=build/index.js",
"dev": "tsc --noEmit && esbuild src/index.ts --bundle --platform=browser --sourcemap --outfile=build/index.js --watch",
"lint": "eslint src/**/*.ts"
},
"engines": {
"node": ">=18"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^7.0.0",
"@typescript-eslint/parser": "^7.0.0",
"esbuild": "^0.21.0",
"eslint": "^8.57.0",
"typescript": "^5.4.0"
}
}