forked from petrbroz/svf-utils
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.25 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
47
48
49
{
"name": "svf-utils",
"version": "5.0.5",
"description": "Tools for working with the SVF format used by Autodesk Platform Services.",
"main": "lib/index.js",
"bin": {
"svf-to-gltf": "./bin/svf-to-gltf.js"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "tsc",
"docs": "typedoc --out docs src"
},
"author": "Petr Broz <petr.broz@autodesk.com>",
"license": "MIT",
"keywords": [
"autodesk-platform-services",
"gltf",
"typescript"
],
"repository": {
"type": "git",
"url": "git+https://github.com/petrbroz/svf-utils.git"
},
"bugs": {
"url": "https://github.com/petrbroz/svf-utils/issues"
},
"homepage": "https://github.com/petrbroz/svf-utils#readme",
"devDependencies": {
"@types/adm-zip": "^0.4.32",
"@types/big-json": "^3.2.1",
"@types/fs-extra": "^9.0.13",
"gltf-validator": "^2.0.0-dev.3.2",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"dependencies": {
"@aps_sdk/authentication": "^1.0.0-beta.1",
"@aps_sdk/autodesk-sdkmanager": "^1.0.0-beta.2",
"@aps_sdk/model-derivative": "^1.0.0-beta.3",
"adm-zip": "^0.5.9",
"axios": "^1.6.8",
"big-json": "github:Imajion/big-json",
"commander": "^3.0.2",
"fs-extra": "^10.0.0"
}
}