-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
64 lines (64 loc) · 1.97 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
55
56
57
58
59
60
61
62
63
64
{
"name": "hammerhead.gl",
"author": "Sébastien Guimmara",
"license": "MIT",
"version": "0.3.0",
"type": "module",
"description": "A 3D renderer written in TypeScript and WebGPU.",
"main": "index.js",
"imports": {
"@*": "./*"
},
"scripts": {
"precommit": "npm run lint && npm test",
"test": "vitest run",
"coverage": "vitest run --coverage",
"lint": "ttsc --noEmit && eslint .",
"build": "ttsc",
"watch": "npm run prepack && ttsc --watch",
"doc": "typedoc --readme none --name Hammerhead.gl src/index.ts",
"start": "vite examples",
"prepack": "shx rm -fr dist/ && shx mkdir dist && npx copyfiles -u 1 './src/**/*.wgsl' dist && node scripts/prepare-package.mjs && npm run build",
"prepare": "husky install",
"pages": "npm run prepack && cd examples && npx vite build --base=/hammerhead.gl/",
"prepare-examples": "node scripts/generate-example-index.mjs"
},
"devDependencies": {
"@loaders.gl/core": "^3.4.4",
"@loaders.gl/gltf": "^3.4.4",
"@loaders.gl/ply": "^3.4.4",
"@tweakpane/core": "^1.1.9",
"@types/bootstrap": "^5.2.6",
"@types/chroma-js": "^2.4.0",
"@types/jest": "^29.5.1",
"@typescript-eslint/eslint-plugin": "^6.6.0",
"@typescript-eslint/parser": "^6.6.0",
"@vitest/coverage-v8": "^0.32.0",
"@webgpu/types": "^0.1.32",
"apache-arrow": "^12.0.0",
"es-main": "^1.2.0",
"eslint": "^8.49.0",
"fs-extra": "^11.1.1",
"glob": "^10.3.4",
"husky": "^8.0.3",
"path": "^0.12.7",
"sass": "^1.66.1",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"ttypescript": "^1.5.15",
"tweakpane": "^3.1.10",
"typedoc": "^0.24.8",
"typescript": "^4.9.5",
"typescript-transform-paths": "^3.4.6",
"url": "^0.11.0",
"vite": "^4.3.9",
"vite-plugin-glsl": "^1.1.2",
"vite-tsconfig-paths": "^4.2.0",
"vitest": "^0.32.0",
"vitest-mock-extended": "^1.1.3"
},
"dependencies": {
"chroma-js": "^2.4.2",
"wgpu-matrix": "^2.4.0"
}
}