-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
51 lines (51 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
{
"name": "three.blurredline",
"version": "1.3.1",
"description": "Drawing smooth blurred lines in THREE.js",
"type": "module",
"module": "./build/three.blurredline.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "esbuild src/index.js --bundle --minify --format=esm --sourcemap --external:three --outfile=build/three.blurredline.js",
"lint": "eslint src/** --ext .js",
"examples": "ws"
},
"repository": {
"type": "git",
"url": "git+https://github.com/markuslerner/THREE.BlurredLine.git"
},
"keywords": [
"lines",
"threejs",
"smooth",
"blur"
],
"files": [
"build/three.blurredline.js",
"build/three.blurredline.js.map",
"examples",
"LICENSE",
"package.json",
"README.md",
"src"
],
"author": "Markus Lerner <[email protected]> (https://www.markuslerner.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/markuslerner/THREE.BlurredLine/issues"
},
"homepage": "https://github.com/markuslerner/THREE.BlurredLine#readme",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/eslint-parser": "^7.19.1",
"@babel/preset-env": "^7.20.2",
"esbuild": "^0.14.23",
"eslint": "^8.13.0",
"eslint-config-prettier": "^8.5.0",
"local-web-server": "^5.4.0",
"prettier": "^2.6.2"
},
"peerDependencies": {
"three": ">= 0.137.0"
}
}