forked from spite/THREE.MeshLine
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
56 lines (56 loc) · 1.38 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
53
54
55
56
{
"name": "@lume/three-meshline",
"version": "4.0.5",
"description": "Mesh-based replacement for THREE.Line",
"license": "MIT",
"homepage": "https://github.com/lume/three-meshline#readme",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js",
"./*": "./*"
},
"scripts": {
"LUME SCRIPTS /////////////////////////////////////////////": "",
"clean": "lume clean",
"build": "lume build",
"dev": "lume dev",
"typecheck": "lume typecheck",
"typecheck:watch": "lume typecheckWatch",
"test": "lume test",
"test:debug": "lume testDebug",
"prettier": "lume prettier",
"prettier:check": "lume prettierCheck",
"release:patch": "lume releasePatch",
"release:minor": "lume releaseMinor",
"release:major": "lume releaseMajor",
"version": "lume versionHook",
"postversion": "lume postVersionHook",
"OTHER SCRIPTS ////////////////////////////////////////////": "",
"prepare": "npm run build"
},
"peerDependencies": {
"three": "*"
},
"devDependencies": {
"@lume/cli": "^0.9.3",
"@types/three": "^0.148.0",
"prettier": "^2.0.0",
"three": "^0.148.0",
"typescript": "^4.6.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lume/three-meshline.git"
},
"bugs": {
"url": "https://github.com/lume/three-meshline/issues"
},
"keywords": [
"lines",
"threejs",
"mesh",
"line"
]
}