-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
54 lines (54 loc) · 1.48 KB
/
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "ts-raytracer",
"version": "1.0.0",
"description": "Raytracer in TypeScript with WebGPU",
"main": "index.js",
"scripts": {
"dev": "vite",
"build": "vite build",
"preview": "vite preview",
"check-types": "tsc --noemit",
"lint:ts": "eslint . --ext .ts,.tsx --fix",
"lint": "yarn check-types && yarn lint:ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hsimpson/ts-raytracer.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/hsimpson/ts-raytracer/issues"
},
"homepage": "https://github.com/hsimpson/ts-raytracer#readme",
"devDependencies": {
"@types/node": "^20.8.10",
"@types/react": "^18.2.34",
"@types/react-dom": "^18.2.14",
"@types/recoil": "0.0.9",
"@typescript-eslint/eslint-plugin": "^6.9.1",
"@typescript-eslint/parser": "^6.9.1",
"@vitejs/plugin-react": "^4.1.1",
"@webgpu/types": "^0.1.38",
"eslint": "^8.52.0",
"eslint-config-prettier": "^9.0.0",
"eslint-config-react": "^1.1.7",
"eslint-plugin-prettier": "^5.0.1",
"eslint-plugin-react": "^7.33.2",
"eslint-plugin-react-hooks": "^4.6.0",
"prettier": "^3.0.3",
"resize-observer-polyfill": "^1.5.1",
"rimraf": "^5.0.5",
"typescript": "^5.2.2",
"vite": "^4.5.2"
},
"dependencies": {
"alea": "^1.0.1",
"gl-matrix": "^3.4.3",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"recoil": "0.7.7",
"simplex-noise": "^4.0.1"
}
}