-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
56 lines (56 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
50
51
52
53
54
55
56
{
"name": "three-glow-mesh",
"version": "0.1.2",
"description": "Create glow mesh with any ThreeJS geometry.",
"license": "MIT",
"homepage": "https://github.com/chrisrzhou/three-glow-mesh",
"repository": "chrisrzhou/three-glow-mesh",
"bugs": "https://github.com/chrisrzhou/three-glow-mesh/issues",
"author": "Chris Zhou <[email protected]> (https://chrisrzhou.io)",
"keywords": [
"three",
"threejs",
"mesh",
"glow",
"geometry"
],
"scripts": {
"build": "microbundle",
"clean": "rm -rf dist",
"lint": "xo --fix; tsc",
"prepare": "npm run clean; npm run build"
},
"main": "dist/index.js",
"module": "dist/index.module.js",
"source": "index.js",
"typings": "types/index.d.ts",
"files": [
"dist",
"types/index.d.ts"
],
"dependencies": {},
"devDependencies": {
"husky": "^4.2.5",
"microbundle": "^0.12.3",
"three": "^0.118.0",
"typescript": "^3.8.3",
"xo": "^0.32.1"
},
"peerDependencies": {
"three": ">= 0.102.0"
},
"husky": {
"hooks": {
"pre-push": "npm run prepare && npm run lint"
}
},
"prettier": {
"bracketSpacing": true,
"jsxBracketSameLine": true,
"trailingComma": "all",
"useTabs": false
},
"xo": {
"prettier": true
}
}