-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "luma-splatting-for-babylonjs",
"private": false,
"version": "1.0.0-beta.1",
"description": "LumaAI Web Library for Babylon.js",
"author": "drumath2237",
"license": "Apache-2.0",
"repository": {
"url": "https://github.com/drumath2237/luma-splatting-for-babylonjs"
},
"homepage": "https://github.com/drumath2237/luma-splatting-for-babylonjs",
"keywords": ["LumaAI", "Gaussian Splatting", "Babylon.js"],
"type": "module",
"files": ["dist/"],
"main": "./dist/index.umd.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.umd.cjs"
},
"scripts": {
"dev": "vite",
"build": "tsc && vite build",
"prepare": "pnpm build",
"check": "biome check",
"check:write": "biome check --write",
"check:ci": "biome ci"
},
"devDependencies": {
"@babylonjs/core": "^7.23.0",
"@biomejs/biome": "^1.8.3",
"@types/node": "^22.5.2",
"sass": "^1.77.8",
"typescript": "^5.5.4",
"vite": "^5.4.3",
"vite-plugin-dts": "^4.1.0"
}
}