-
Notifications
You must be signed in to change notification settings - Fork 25
/
package.json
46 lines (46 loc) · 1.11 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
45
46
{
"name": "three-usdz-loader",
"version": "1.0.9",
"description": "A basic USDZ file (Pixar Universal Scene Description) loader for ThreeJS",
"main": "lib/USDZLoader.js",
"types": "lib/USDZLoader.d.ts",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
"lint": "tslint -p tsconfig.json"
},
"files": [
"lib/**/*",
"external/**/*"
],
"keywords": [
"usdz",
"threejs",
"loader",
"pixar",
"usd",
"3d",
"viewer"
],
"author": "Pierre-Olivier",
"license": "Modified Apache 2.0",
"devDependencies": {
"@types/node": "^17.0.45",
"@types/three": "^0.166.0",
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.17.0",
"prettier": "^2.6.2",
"tslint": "^6.1.3",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.7.3"
},
"peerDependencies": {
"three": "^0.166.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ponahoum/three-usdz-loader.git"
}
}