diff options
| author | James Barnett <noreply@jamesbarnett.xyz> | 2022-01-01 21:21:52 +0000 |
|---|---|---|
| committer | James Barnett <noreply@jamesbarnett.xyz> | 2022-01-01 21:21:52 +0000 |
| commit | 7ad1b7efabea1349107669a432e6c88305f8d825 (patch) | |
| tree | 8de34e4b3e20e4e8c0c01578ce0b0cfaa46cc6cf /package.json | |
| parent | dc5e815da04d7c377b3cb51558d6fe7b8e0fd7c0 (diff) | |
| download | js-raytracer-7ad1b7efabea1349107669a432e6c88305f8d825.tar.xz js-raytracer-7ad1b7efabea1349107669a432e6c88305f8d825.zip | |
Implement basic ray tracing
Diffstat (limited to 'package.json')
| -rw-r--r-- | package.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/package.json b/package.json new file mode 100644 index 0000000..79d7826 --- /dev/null +++ b/package.json @@ -0,0 +1,22 @@ +{ + "name": "js-raytracer", + "version": "1.0.0", + "description": "", + "scripts": { + "lint": "gts lint", + "fix": "gts fix", + "buildDev": "webpack --mode development", + "build": "webpack --mode production" + }, + "author": "James Barnett", + "license": "GPL-3.0", + "devDependencies": { + "typescript": "4.4.4", + "gts": "^3.1.0", + "@types/node": "^14.11.2", + "ts-loader": "9.2.6", + "webpack": "5.65.0", + "webpack-cli": "4.9.1", + "copy-webpack-plugin": "10.2.0" + } +} |