-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 976 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
{
"name": "haxteroids",
"version": "0.0.0",
"license": "LGPL-3.0-or-later",
"description": "An advanced remake of arcade Asteroids.",
"keywords": [
"haxteroids"
],
"homepage": "https://MilesBHuff.GitHub.io/Haxteroids/src/haxteroids.htm",
"bugs": "https://GitHub.com/MilesBHuff/Haxteroids/issues",
"repository": {
"type": "git",
"url": "git+https://GitHub.com/MilesBHuff/Haxteroids.git"
},
"private": true,
"directories": {
"bin": "./dist",
"lib": "./src"
},
"type": "module",
"main": "./code/src/main.ts",
"scripts": {
"postinstall": "npm dedupe",
"relock": "rm -rf node_modules && rm -f npm-shrinkwrap.json && npm install && npm shrinkwrap",
"build": "rm -rf dist/incl && npx tsc --NoEmit & npx esbuild src/code/main.ts --bundle --outfile=dist/incl/haxteroids.js &"
},
"engines": {
"npm": "^8"
},
"devDependencies": {
"esbuild": "latest",
"tslib": "latest",
"typescript": "latest"
}
}