-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.05 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
{
"name": "chromospace",
"version": "0.1.3",
"author": "David Kouřil <[email protected]>",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"preview": "vite preview",
"test": "vitest --pool=forks",
"typecheck": "tsc",
"fix": "biome check --write ."
},
"files": ["dist"],
"main": "./dist/chromospace.umd.cjs",
"module": "./dist/chromospace.js",
"types": "./dist/main.d.ts",
"exports": {
".": {
"types": "./dist/main.d.ts",
"import": "./dist/chromospace.js",
"require": "./dist/chromospace.umd.cjs"
}
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@types/chroma-js": "^2.4.5",
"@types/node": "^22.10.2",
"@types/three": "^0.171.0",
"jsdom": "^25.0.1",
"typescript": "^5.7.2",
"vite": "^6.0.4",
"vitest": "^2.1.8"
},
"dependencies": {
"apache-arrow": "^18.1.0",
"chroma-js": "^3.1.2",
"gl-matrix": "^3.4.3",
"n8ao": "^1.9.3",
"postprocessing": "^6.36.4",
"three": "^0.171.0"
}
}