-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.26 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.26 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
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "@needle-tools/gltf-progressive",
"version": "3.5.0-rc",
"description": "three.js support for loading glTF or GLB files that contain progressive loading data",
"homepage": "https://needle.tools",
"author": {
"name": "Needle",
"email": "hi@needle.tools",
"url": "https://needle.tools/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/needle-tools/gltf-progressive"
},
"license": "MIT",
"readme": "README.md",
"keywords": [
"three.js",
"gltf",
"glb",
"progressive",
"loading",
"needle",
"engine",
"webgl",
"optimization"
],
"type": "module",
"main": "./src/index.ts",
"exports": {
".": {
"import": "./src/index.ts",
"require": "./gltf-progressive.js"
}
},
"scripts": {
"dev": "npm-watch build:lib",
"build": "node tools/build.mjs",
"build:dry": "node tools/build.mjs --dry-run",
"build:dist": "vite build",
"build:lib": "tsc --rootDir ./src --outDir ./dist/lib --noEmit false --declaration --incremental false --sourceMap false && node tools/compile.mjs",
"test:tsc": "tsc --noEmit",
"lint": "eslint --ext .ts src",
"lint:fix": "eslint --ext .ts src --fix"
},
"files": [
"lib",
"examples",
"package.json",
"README.md",
"CHANGELOG.md",
"gltf-progressive.js",
"gltf-progressive.min.js",
"gltf-progressive.umd.cjs",
"NEEDLE_progressive",
"LICENSE"
],
"watch": {
"build:lib": {
"patterns": [
"src/**/*",
"examples/**/*.html"
],
"extensions": "ts,json,html",
"ignore": "dist"
}
},
"peerDependencies": {
"three": ">= 0.160.0"
},
"devDependencies": {
"@stylistic/eslint-plugin-ts": "^1.5.4",
"@types/three": "0.169.0",
"@typescript-eslint/eslint-plugin": "^6.2.0",
"@typescript-eslint/parser": "^6.2.0",
"eslint": "^8.56.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-secrets": "^0.8.9",
"eslint-plugin-no-unsanitized": "^4.0.2",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-xss": "^0.1.12",
"nodemon": "^3.1.4",
"npm-watch": "^0.13.0",
"three": ">= 0.160.0",
"vite": "7"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
}
}