-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.08 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
50
51
52
{
"name": "plyo",
"version": "0.0.1",
"description": "optimize ply files, reduce x,y,z and nx, ny, nz precision, merge duplicate vertices, remove normals, remove alpha",
"bin": {
"plyo": "src/bin.js"
},
"type": "module",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"dev": "./src/bin.js -i docs --remove-normals",
"format": "f -w",
"test": "t"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grundstein/plyo.git"
},
"author": "TheSystemCollective",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/grundstein/plyo/issues"
},
"homepage": "https://github.com/grundstein/plyo#readme",
"dependencies": {
"@magic/cli": "0.0.46",
"@magic/fs": "0.0.28",
"@magic/types": "0.1.23"
},
"devDependencies": {
"@magic/format": "0.0.51",
"@magic/test": "0.2.17"
},
"contributors": [
{
"name": "jascha ehrenreich",
"github": "jaeh"
},
{
"name": "daniela weiss",
"github": "mslitto"
}
],
"keywords": [
"optimize",
"ply",
"cli"
]
}