-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.25 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.25 KB
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
{
"name": "uchimata",
"version": "0.4.4",
"author": "David Kouřil <david.kouril@gmail.com>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest --pool=forks",
"typecheck": "tsc",
"fix": "biome check --write .",
"docs": "typedoc"
},
"files": [
"dist"
],
"main": "./dist/uchimata.umd.cjs",
"module": "./dist/uchimata.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/uchimata.js",
"require": "./dist/uchimata.umd.cjs"
}
},
"devDependencies": {
"@biomejs/biome": "2.3.14",
"@changesets/cli": "^2.29.7",
"@types/chroma-js": "^3.1.1",
"@types/node": "^24.9.1",
"@types/three": "^0.180.0",
"typedoc": "^0.28.15",
"typedoc-plugin-markdown": "^4.9.0",
"typescript": "^5.9.3",
"vite": "^7.1.12",
"vitest": "^4.0.3"
},
"dependencies": {
"@duckdb/duckdb-wasm": "1.30.0",
"@preact/signals-core": "^1.12.1",
"@uwdata/flechette": "^2.2.4",
"chroma-js": "^3.1.2",
"gl-matrix": "3.4.3",
"n8ao": "^1.10.1",
"postprocessing": "^6.37.8",
"three": "^0.180.0"
},
"packageManager": "pnpm@10.3.0"
}