-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.18 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@babylonjs/node-assets",
"version": "0.1.0",
"license": "Apache-2.0",
"type": "module",
"sideEffects": false,
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
},
"./package.json": "./package.json"
},
"files": [
"dist"
],
"keywords": [
"babylon",
"babylonjs",
"3d",
"gltf",
"glb",
"asset-pipeline",
"draco",
"meshopt",
"ktx2"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BabylonJS/Node-Assets.git"
},
"bugs": {
"url": "https://github.com/BabylonJS/Node-Assets/issues"
},
"homepage": "https://github.com/BabylonJS/Node-Assets#readme",
"engines": {
"node": "^20.19.0 || ^22.13.0 || >=24"
},
"packageManager": "pnpm@11.9.0",
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vite build",
"typecheck": "tsc -p tsconfig.json --noEmit",
"lint": "eslint . && pnpm typecheck",
"lint:fix": "eslint . --fix",
"format": "prettier --write \"src/**/*.ts\" \"tests/**/*.ts\" \"*.config.ts\" \"*.config.mjs\"",
"format:check": "prettier --check \"src/**/*.ts\" \"tests/**/*.ts\" \"*.config.ts\" \"*.config.mjs\"",
"test": "vitest run",
"test:watch": "vitest",
"typedocs": "typedoc"
},
"dependencies": {
"@babylonjs/core": "^9.21.2",
"@babylonjs/loaders": "^9.21.2",
"@babylonjs/serializers": "^9.21.2",
"babylonpress-ktx2-encoder": "0.6.0",
"sharp": "0.35.4"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/node": "^26.1.1",
"eslint": "^10.7.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.6",
"globals": "^17.7.0",
"prettier": "^3.9.6",
"typedoc": "^0.28.20",
"typescript": "^6.0.3",
"typescript-eslint": "^8.65.0",
"vite": "^6.4.3",
"vite-plugin-dts": "^4.5.4",
"vitest": "^4.1.10"
}
}